diff --git a/acupuncture-后台/src/views/medicalFile/index.vue b/acupuncture-后台/src/views/medicalFile/index.vue
index f8f1ffc5..415d3abb 100644
--- a/acupuncture-后台/src/views/medicalFile/index.vue
+++ b/acupuncture-后台/src/views/medicalFile/index.vue
@@ -373,6 +373,27 @@
>
提交审核
-->
+
+
+
+ 通过
+
+
+ 驳回
+
+
@@ -1316,9 +1337,15 @@ export default {
/** 提交审核 */
handleExamine(row, _status) {
let form = JSON.parse(JSON.stringify(row));
+ let queueList = row.queueVoList?.map((item) => item.queueId) || [];
+ form = {
+ ...JSON.parse(JSON.stringify(row)),
+ queueIdList: queueList,
+ };
form.status = _status;
+ let title = this.status[_status];
this.$modal
- .confirm(`是否确认删除提交当前数据的数据(${row.name})?`)
+ .confirm(`是否确认${title}当前选择的数据(${row.name})?`)
.then(function () {
return treatmentUpd(form);
})