瀏覽代碼

权限遗漏

CzRger 1 年之前
父節點
當前提交
94c0c3a664
共有 2 個文件被更改,包括 5 次插入1 次删除
  1. 1 1
      src/views/system/notice-announcement/index.vue
  2. 4 0
      src/views/system/seat-manage/index.vue

+ 1 - 1
src/views/system/notice-announcement/index.vue

@@ -42,7 +42,7 @@
           </CusForm>
         </template>
         <template #buttons>
-          <div class="__cus-button_submit __hover" @click="onAdd">
+          <div class="__cus-button_submit __hover" @click="onAdd" v-if="$store.getters['app/isZBGL']">
             <SvgIcon name="add" size="16"/>新增
           </div>
         </template>

+ 4 - 0
src/views/system/seat-manage/index.vue

@@ -10,6 +10,7 @@
                 link="select"
                 v-model:param="dutyForm.dutyHallLeader"
                 :clearable="false"
+                :disabled="!$store.getters['app/isZBGL']"
                 :options="$store.state.dictionary.dutyHallLeaderList"
                 @change="setDuty"/>
             <CusFormColumn
@@ -18,6 +19,7 @@
                 link="select"
                 v-model:param="dutyForm.totalClass"
                 :clearable="false"
+                :disabled="!$store.getters['app/isZBGL']"
                 :options="$store.state.dictionary.totalClassList"
                 @change="setDuty"/>
             <CusFormColumn
@@ -26,6 +28,7 @@
                 link="select"
                 v-model:param="dutyForm.shiftLeader"
                 :clearable="false"
+                :disabled="!$store.getters['app/isZBGL']"
                 :options="$store.state.dictionary.shiftLeaderList"
                 @change="setDuty"/>
             <CusFormColumn
@@ -36,6 +39,7 @@
                 multiple
                 :clearable="false"
                 :filterable="false"
+                :disabled="!$store.getters['app/isZBGL']"
                 :options="$store.state.dictionary.dutyPersonList"
                 @change="setDuty"/>
           </CusForm>