liuzhihui 2 vuotta sitten
vanhempi
commit
fad324f6ff

+ 2 - 1
CallCenterWeb.UI/RMYY/src/components/button/orderList.vue

@@ -194,7 +194,7 @@
194 194
           </el-radio-group>
195 195
         </el-form-item>
196 196
         <el-form-item label="" v-show="appointmentMenForm.F_gtqk == '0'">
197
-          <select-dept-tree :tishiy="tishiyu" :deptparam="mendeptidArr" v-model="appointmentMenForm.F_zyks" @post-deptid="getmenDeptid" />
197
+          <select-dept-tree :tishiy="tishiyu" :isCheckStrictly="isCheckStrictly" :deptparam="mendeptidArr" v-model="appointmentMenForm.F_zyks" @post-deptid="getmenDeptid" />
198 198
         </el-form-item>
199 199
         <el-form-item label="处理结果" prop="cont">
200 200
           <el-input :autosize="{ minRows: 4, maxRows: 8 }" v-model="appointmentMenForm.cont" show-word-limit
@@ -996,6 +996,7 @@
996 996
         },
997 997
         mendeptidArr:[],
998 998
         tishiyu:'请选择住院科室',
999
+        isCheckStrictly: false,
999 1000
         appointmentMenForm:{
1000 1001
           isover: 1,
1001 1002
           F_gtqk:'0',

+ 5 - 1
CallCenterWeb.UI/RMYY/src/components/context/commonSelect/selectDeptTree.vue

@@ -31,11 +31,15 @@ export default {
31 31
       type: String,
32 32
       default: 'mini'
33 33
     },
34
+    isCheckStrictly: {
35
+      type:Boolean,
36
+      default:true
37
+    },
34 38
   },
35 39
   data() {
36 40
     return {
37 41
       defaultProps: {
38
-        checkStrictly: true,
42
+        checkStrictly: this.isCheckStrictly,
39 43
         children: 'children',
40 44
         label: 'text',
41 45
         value: 'id'