Commit 31795979 by 唐玉峰

.

parent 4aa84ad4
......@@ -357,7 +357,7 @@
<el-table-column show-overflow-tooltip property="emergency" label="急诊" width="85">
<template #default="scope">
<el-select
v-if="scope.row.ischeck == 1 && scope.row.type == 2 && scope.row.isedit && scope.row.orderType"
v-if="scope.row.ischeck == 1 && scope.row.type != 1 && scope.row.isedit && scope.row.orderType"
size="mini"
v-model="scope.row.emergency"
>
......@@ -1026,6 +1026,12 @@ export default {
.map((item, index) => {
index == 0 ? (item.isedit = true) : (item.isedit = false);
});
this.multipleSelection
.filter((item) => item.adviceType)
.filter((item) => item.type == 3)
.map((item, index) => {
item.isedit = true;
});
}
if (this.multipleSelection1.length) {
this.multipleSelection1
......@@ -1034,6 +1040,12 @@ export default {
.map((item, index) => {
index == 0 ? (item.isedit = true) : (item.isedit = false);
});
this.multipleSelection1
.filter((item) => item.adviceType)
.filter((item) => item.type == 3)
.map((item, index) => {
item.isedit = true;
});
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment