|
@@ -71,10 +71,11 @@ import {
|
|
|
tempYzData,
|
|
|
yiZhuData,
|
|
|
associateOrders,
|
|
|
- clearAssociate
|
|
|
+ clearAssociate,
|
|
|
+ drugManual
|
|
|
} from "@/views/hospitalization/zhu-yuan-yi-sheng/public-js/zhu-yuan-yi-sheng";
|
|
|
import {getFormatDatetime} from "@/utils/date";
|
|
|
-import {computed, defineEmits, defineProps, nextTick, onMounted, Ref, ref, watch} from 'vue'
|
|
|
+import {computed, defineEmits, defineProps, nextTick, ref, watch} from 'vue'
|
|
|
import sleep from "@/utils/sleep";
|
|
|
import store from "@/store"
|
|
|
import {ElScrollbar} from "element-plus";
|
|
@@ -271,11 +272,16 @@ const opt = [
|
|
|
name: '关联', click: (data, index) => {
|
|
|
emit('clickAssociate', data)
|
|
|
}
|
|
|
- },
|
|
|
- {
|
|
|
+ }, {
|
|
|
name: '退出关联模式', click: () => {
|
|
|
clearAssociate()
|
|
|
}
|
|
|
+ }, {
|
|
|
+ name: '药品说明书', click: (data) => {
|
|
|
+ if (data.groupNo !== '00') {
|
|
|
+ drugManual.value.open(data.orderCode, data.serial);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
const contextmenuItem = async (item, index, event) => {
|