Procházet zdrojové kódy

修改医嘱相关权限

csx před 5 roky
rodič
revize
638eeebea9

+ 9 - 3
src/pages/main/dialog/OrdersDialog.vue Zobrazit soubor

34
         <span
34
         <span
35
           v-if="currentSubAdvices.length <= 0"
35
           v-if="currentSubAdvices.length <= 0"
36
           @click="modifyAdviceAction"
36
           @click="modifyAdviceAction"
37
-          :class="{ forbid: current_group_index < 0 ||  currentAdvices.length != 1 }"
37
+          :class="{ forbid: current_group_index < 0 ||  currentAdvices.length != 1 || (this.$store.getters.user.user.user_type == 3 && !isPremission) }"
38
         >修改</span>
38
         >修改</span>
39
         <span
39
         <span
40
           v-if="currentSubAdvices.length <= 0"
40
           v-if="currentSubAdvices.length <= 0"
41
           @click="deleteAdviceAction"
41
           @click="deleteAdviceAction"
42
-          :class="{ forbid: current_group_index < 0 || currentAdvices.length <= 0  }"
42
+          :class="{ forbid: current_group_index < 0 || currentAdvices.length <= 0 || (this.$store.getters.user.user.user_type == 3 && !isPremission) }"
43
         >删除</span>
43
         >删除</span>
44
 
44
 
45
         <span v-if="currentSubAdvices.length > 0" @click="modifySubdviceAction">修改子医嘱</span>
45
         <span v-if="currentSubAdvices.length > 0" @click="modifySubdviceAction">修改子医嘱</span>
46
         <span v-if="currentSubAdvices.length > 0" @click="deleteSubAdviceAction">删除子医嘱</span>
46
         <span v-if="currentSubAdvices.length > 0" @click="deleteSubAdviceAction">删除子医嘱</span>
47
       </div>
47
       </div>
48
       <div class="DialogContent choose" id="dialogTop" style="height:6.5rem;">
48
       <div class="DialogContent choose" id="dialogTop" style="height:6.5rem;">
49
-       
49
+
50
         <div class="content clearfix">
50
         <div class="content clearfix">
51
           <div class="orderTable">
51
           <div class="orderTable">
52
 
52
 
820
 
820
 
821
       },
821
       },
822
       deleteAdviceAction: function () {
822
       deleteAdviceAction: function () {
823
+        if (this.$store.getters.user.user.user_type == 3){
824
+          return
825
+        }
823
         if (this.current_select_object == 1) {
826
         if (this.current_select_object == 1) {
824
           if (this.currentAdvices.length <= 0) {
827
           if (this.currentAdvices.length <= 0) {
825
             return
828
             return
1210
 
1213
 
1211
       },
1214
       },
1212
       modifyAdviceAction: function () {
1215
       modifyAdviceAction: function () {
1216
+        if (this.$store.getters.user.user.user_type == 3){
1217
+          return
1218
+        }
1213
         if (this.current_group_index < 0) {
1219
         if (this.current_group_index < 0) {
1214
           return
1220
           return
1215
         }
1221
         }

+ 1 - 2
src/pages/main/dialog/subMenu/multipleSubMenu.vue Zobrazit soubor

214
       :show="is_show"
214
       :show="is_show"
215
       v-on:menu-cancle="menuCancle"
215
       v-on:menu-cancle="menuCancle"
216
       v-on:menu-comfirm="menuComfirm"
216
       v-on:menu-comfirm="menuComfirm"
217
-      v-on:menu-empty="menuEmpty"
218
-      :propsForm="propForm"
217
+       :propsForm="propForm"
219
     ></new-check-box-sub-menu>
218
     ></new-check-box-sub-menu>
220
   </div>
219
   </div>
221
 </template>
220
 </template>