|
@@ -2013,6 +2013,7 @@ import {useUserStore} from "@/pinia/user-store";
|
|
|
import env from "../../../../utils/setting";
|
|
|
import {getSheetInfo, saveTcmSheet, verifySheet} from "@/api/case-front-sheet/tcm-sheet.js";
|
|
|
import Search from '@/components/search/Index.vue'
|
|
|
+import {ElMessageBox} from "element-plus";
|
|
|
|
|
|
const userStore = useUserStore();
|
|
|
const userWards = ref([]);
|
|
@@ -2543,6 +2544,11 @@ function beforePrint(page) {
|
|
|
}).catch(e => {
|
|
|
forceVerifies.value = e.data;
|
|
|
showMessageDrawer.value = true;
|
|
|
+ ElMessageBox.confirm('病案首页检验未通过,是否继续打印?', '提示', {
|
|
|
+ type: "warning",
|
|
|
+ }).then(() => {
|
|
|
+ execPrint(page)
|
|
|
+ }).catch(() => {})
|
|
|
});
|
|
|
} else {
|
|
|
execPrint(page)
|