|
@@ -73,7 +73,7 @@ import RightClickMenu from "@/components/menu-item/RightClickMenu.vue";
|
|
|
import {xcMessage} from "@/utils/xiaochan-element-plus";
|
|
|
import store from "@/store";
|
|
|
import {ElIcon} from "element-plus";
|
|
|
-import {Folder, Document, Open, Sort} from "@element-plus/icons-vue";
|
|
|
+import {Folder, Document, Open, Sort, View} from "@element-plus/icons-vue";
|
|
|
|
|
|
const props = defineProps({
|
|
|
maxHeight: {
|
|
@@ -363,6 +363,16 @@ const opt = [
|
|
|
},
|
|
|
icon: h(ElIcon, {}, () => h(Open))
|
|
|
},
|
|
|
+ {
|
|
|
+ name: '同时打开', click: (data) => {
|
|
|
+ if (!data.unlock.id) {
|
|
|
+ xcMessage.error('请选中保存的病历。')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ emit('openAndSaveTheMedicalRecord', data.unlock.id, 3)
|
|
|
+ },
|
|
|
+ icon: h(ElIcon, {}, () => h(View))
|
|
|
+ },
|
|
|
{
|
|
|
name: '确认排序', click: (data) => {
|
|
|
let temp = []
|