diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js index ecedd8da..201813ae 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js @@ -121,3 +121,25 @@ export function getTestResultPage(queryParams) { data: queryParams, }); } + +/** + * 删除申请单(仅待签发状态可删除) + */ +export function deleteRequestForm(data) { + return request({ + url: '/reg-doctorstation/request-form/delete', + method: 'post', + data: data, + }); +} + +/** + * 撤回申请单(已签发状态撤回至待签发) + */ +export function withdrawRequestForm(data) { + return request({ + url: '/reg-doctorstation/request-form/withdraw', + method: 'post', + data: data, + }); +} diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue index f81ff8fa..680f7522 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue @@ -95,9 +95,49 @@ {{ parseStatus(scope.row.status) }} - + @@ -169,6 +209,60 @@ 关闭 + + +
+ + + + + + + + + + +
+ 申请项目 + + + + + + + +
+
+
+ +
+ + +
+