|
@@ -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))
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|