Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -52,6 +52,24 @@ export function getSurgeryApplyList(query) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 查询已生成医嘱的计费项目
|
||||||
|
export function getGeneratedOrders(chargeIds) {
|
||||||
|
return request({
|
||||||
|
url: '/clinical-manage/surgery-schedule/generated-orders',
|
||||||
|
method: 'post',
|
||||||
|
data: { chargeIds }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 生成临时医嘱
|
||||||
|
export function generateTemporaryOrders(data) {
|
||||||
|
return request({
|
||||||
|
url: '/clinical-manage/surgery-schedule/generate-orders',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 导出手术安排列表
|
// 导出手术安排列表
|
||||||
export function exportSurgerySchedule(query) {
|
export function exportSurgerySchedule(query) {
|
||||||
return request({
|
return request({
|
||||||
|
|||||||
@@ -86,8 +86,13 @@ const tableColumns = computed<TableColumn[]>(() => [
|
|||||||
* @param searchKey 搜索关键词
|
* @param searchKey 搜索关键词
|
||||||
*/
|
*/
|
||||||
function refresh(adviceType: any, categoryCode: string, searchKey: string) {
|
function refresh(adviceType: any, categoryCode: string, searchKey: string) {
|
||||||
|
// 有搜索词时跨类型搜索,避免用户输入"级护理"但因当前adviceType为药品而搜不到诊疗类护理项目
|
||||||
|
if (searchKey) {
|
||||||
|
queryParams.value.adviceTypes = '1,2,3,6';
|
||||||
|
} else {
|
||||||
queryParams.value.adviceTypes =
|
queryParams.value.adviceTypes =
|
||||||
adviceType !== undefined && adviceType !== '' ? String(adviceType) : '1,2,3,6';
|
adviceType !== undefined && adviceType !== '' ? String(adviceType) : '1,2,3,6';
|
||||||
|
}
|
||||||
queryParams.value.categoryCode = categoryCode || '';
|
queryParams.value.categoryCode = categoryCode || '';
|
||||||
queryParams.value.searchKey = searchKey || '';
|
queryParams.value.searchKey = searchKey || '';
|
||||||
getList();
|
getList();
|
||||||
|
|||||||
@@ -2,22 +2,7 @@ import request from '@/utils/request';
|
|||||||
|
|
||||||
// 申请单相关接口
|
// 申请单相关接口
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询检查申请单
|
|
||||||
*/
|
|
||||||
export function getCheck(queryParams) {
|
|
||||||
return request({
|
|
||||||
url: '/reg-doctorstation/request-form/get-check',
|
|
||||||
method: 'get',
|
|
||||||
params: queryParams,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 查询检验申请单
|
|
||||||
*/
|
|
||||||
export function getInspection(queryParams) {
|
|
||||||
return request({
|
|
||||||
url: '/reg-doctorstation/request-form/get-inspection',
|
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: queryParams,
|
params: queryParams,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
新增
|
新增
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button type="primary" @click="handleSaveBatch()" :disabled="false"> 保存 </el-button>
|
<el-button type="primary" @click="handleSaveBatch()" :disabled="false"> 保存 </el-button>
|
||||||
<el-button type="primary" @click="handleSave()" :disabled="false"> 签发 </el-button>
|
<el-button type="primary" @click="handleSave()" :disabled="isSaveDisabled"> 签发 </el-button>
|
||||||
<el-button type="warning" plain @click="handleSingOut()" :disabled="false">
|
<el-button type="warning" plain @click="handleSingOut()" :disabled="false">
|
||||||
撤回
|
撤回
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|||||||
Reference in New Issue
Block a user