浏览代码

漏掉了引用处权限

Karsa 11 月之前
父节点
当前提交
49699d9fc7

+ 1 - 1
src/views/dataEntry_manage/databaseComponents/dataAssociateComputeData.vue

@@ -47,7 +47,7 @@
                 </template>
                 </template>
             </el-table-column>
             </el-table-column>
             <el-table-column :label="$t('Edb.Detail.e_opera')" key="Copy" align="center" width="110">
             <el-table-column :label="$t('Edb.Detail.e_opera')" key="Copy" align="center" width="110">
-                <template slot-scope="scope">
+                <template slot-scope="scope" v-if="scope.row.HaveOperaAuth">
                 <span v-permission="permissionBtn.edbDataPermission.edbData_copyData"
                 <span v-permission="permissionBtn.edbDataPermission.edbData_copyData"
                 class="editsty" @click="copyCode(scope.row)">
                 class="editsty" @click="copyCode(scope.row)">
                     <i class="el-icon-document-copy" />&nbsp;{{$t('Edb.detail_copydata_btn')}}</span
                     <i class="el-icon-document-copy" />&nbsp;{{$t('Edb.detail_copydata_btn')}}</span

+ 5 - 1
src/views/system_manage/dataOperaAuth.vue

@@ -120,7 +120,7 @@
         </div>
         </div>
 
 
         <div>
         <div>
-          <span>{{$t('SystemManage.OperateAuth.label_checked')}}:{{ isSelectAll ? (total-checkedList.length) : checkedList.length }}</span>
+          <span>{{$t('SystemManage.OperateAuth.label_checked')}}:{{ isSelectAll ? (total-filterDuplicateChecked.length) : filterDuplicateChecked.length }}</span>
           <el-checkbox 
           <el-checkbox 
             v-model="searchForm.checkAll"
             v-model="searchForm.checkAll"
             :indeterminate="searchForm.checkSome"
             :indeterminate="searchForm.checkSome"
@@ -344,6 +344,10 @@ export default {
         6: this.$t('SystemManage.OperateAuth.placeholder_sheet')
         6: this.$t('SystemManage.OperateAuth.placeholder_sheet')
       }
       }
       return textMap[this.default_tab] ? textMap[this.default_tab] : this.$t('SystemManage.OperateAuth.placeholder02')
       return textMap[this.default_tab] ? textMap[this.default_tab] : this.$t('SystemManage.OperateAuth.placeholder02')
+    },
+
+    filterDuplicateChecked() {
+      return Array.from(new Set(this.checkedList))
     }
     }
   },
   },