dataOperaAuth.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  1. <template>
  2. <div class="operate-auth-box">
  3. <div class="header">
  4. <div>
  5. <el-select
  6. v-model="currAuthSet"
  7. @change="changeSet"
  8. >
  9. <el-option :label="$t('SystemManage.OperateAuth.set_assets_tab')" :value="1"/>
  10. <el-option :label="$t('SystemManage.OperateAuth.set_data_tab')" :value="2"/>
  11. </el-select>
  12. <el-cascader
  13. v-model="searchForm.user"
  14. :options="userList"
  15. :props="{
  16. value: 'NodeId',
  17. label: 'NodeName',
  18. children: 'Children',
  19. emitPath: false
  20. }"
  21. collapse-tags
  22. :show-all-levels="false"
  23. clearable
  24. @change="()=>{ filterChange();getUserDataCount();}"
  25. filterable
  26. :placeholder="this.$t('SystemManage.OperateAuth.placeholder04')"
  27. style="margin: 0 20px"
  28. />
  29. </div>
  30. <div>
  31. <el-button
  32. type="primary"
  33. @click="transferAuthHandle({},'all')"
  34. v-if="currAuthSet===1&&authBtn('operateAuth_transfer_all')"
  35. ><!-- 全量资产转移 -->{{$t('SystemManage.OperateAuth.transfer_all_btn')}}</el-button>
  36. <template v-if="currAuthSet===2">
  37. <el-tooltip effect="dark" placement="right" v-if="authBtn('operateAuth_set_classifySercet')">
  38. <div
  39. slot="content"
  40. v-html="$i18n.locale==='en'?ruleTips.classifySetEn:ruleTips.classifySet "
  41. style="line-height: 20px;width:300px"
  42. ></div>
  43. <i class="el-icon-warning" style="color: #666" />
  44. </el-tooltip>
  45. <el-button
  46. type="primary"
  47. @click="setMenuSecretHandle"
  48. v-if="authBtn('operateAuth_set_classifySercet')"
  49. >
  50. <!-- 分类加密设置 -->{{$t('SystemManage.OperateAuth.classify_secret_btn')}}
  51. </el-button>
  52. <el-button
  53. type="primary"
  54. @click="setAuthHandle({},'classify')"
  55. v-if="authBtn('operateAuth_set_classifySet')"
  56. >
  57. <!-- 按分类设置权限 -->{{$t('SystemManage.OperateAuth.classify_set_btn')}}
  58. </el-button>
  59. </template>
  60. <el-button
  61. type="primary"
  62. v-if="authBtn(currAuthSet===1?'operateAuth_transfer_batch':'operateAuth_set_batch')"
  63. @click="()=>{ currAuthSet===1 ? transferAuthHandle({},'multiple') : setAuthHandle({},'multiple') }"
  64. >
  65. <!-- 批量设置 -->{{$t('SystemManage.OperateAuth.btn_text01')}}
  66. </el-button>
  67. </div>
  68. </div>
  69. <div class="main">
  70. <ul class="tab-wrapper">
  71. <li :class="['tab-li',{act: default_tab===item.key}]" v-for="item in tabs" :key="item.key" @click="changeTab(item)">
  72. {{item.label}}
  73. <div style="margin-top:20px;color: #666;" v-if="statisticCountMap[item.key]"><!-- 数量: -->{{$t('SystemManage.OperateAuth.label_count')}}:{{statisticCountMap[item.key]}}</div>
  74. </li>
  75. </ul>
  76. <el-tabs v-model="default_sub_tab" @tab-click="changeSubTab" v-if="default_tab===6">
  77. <el-tab-pane :label="item.label" v-for="item in subTabs" :key="item.key" :name="String(item.key)"></el-tab-pane>
  78. </el-tabs>
  79. <div class="filter-wrapper">
  80. <div>
  81. <el-input
  82. v-model="searchForm.key_word"
  83. :placeholder="phText"
  84. style="width: 250px;margin-right:20px;"
  85. @change="filterChange"
  86. clearable
  87. >
  88. <i slot="prefix" class="el-input__icon el-icon-search"/>
  89. </el-input>
  90. <el-cascader
  91. v-model="searchForm.classifys"
  92. :options="classifyOption"
  93. :props="{
  94. value: 'ClassifyId',
  95. label: 'ClassifyName',
  96. children: 'Child',
  97. emitPath: true,
  98. multiple:true
  99. }"
  100. collapse-tags
  101. :show-all-levels="false"
  102. :key="classifysOptKey"
  103. clearable
  104. filterable
  105. @change="filterChange"
  106. :placeholder="this.$t('SystemManage.OperateAuth.placeholder03')"
  107. style="width: 250px;"
  108. />
  109. </div>
  110. <div>
  111. <span>{{$t('SystemManage.OperateAuth.label_checked')}}:{{ isSelectAll ? (total-filterDuplicateChecked.length) : filterDuplicateChecked.length }}</span>
  112. <el-checkbox
  113. v-model="searchForm.checkAll"
  114. :indeterminate="searchForm.checkSome"
  115. :disabled="tableData.length===0"
  116. style="margin-left:20px"
  117. @change="listCheckAllChange"
  118. ><!-- 列表全选 -->{{$t('SystemManage.OperateAuth.all_select')}}</el-checkbox>
  119. </div>
  120. </div>
  121. <el-table
  122. :data="tableData"
  123. ref="table"
  124. element-loading-text="加载中..."
  125. v-loading="tableLoading"
  126. border
  127. style="margin:20px 0"
  128. @selection-change="selectionChange"
  129. @select="selectHandle"
  130. @select-all="selectAllPageHandle"
  131. >
  132. <el-table-column
  133. type="selection"
  134. width="55"
  135. />
  136. <el-table-column
  137. v-for="item in tableColums"
  138. :key="item.label"
  139. :label="item.label"
  140. :prop="item.key"
  141. :width="item.widthsty"
  142. :min-width="item.minwidthsty"
  143. align="center"
  144. >
  145. <template slot-scope="{row}">
  146. <span v-if="item.key==='Name'">
  147. {{ currentLang==='en' ? (row.NameEn||row.Name) : row.Name }}
  148. </span>
  149. <template v-else-if="item.key==='handle'">
  150. <span
  151. class="editsty"
  152. @click="() => {currAuthSet===1 ? transferAuthHandle(row) : setAuthHandle(row)}"
  153. v-if="authBtn(currAuthSet===1?'operateAuth_transfer_one':'operateAuth_set_one')"
  154. >
  155. <!-- 编辑 -->{{$t('Dialog.title_prefix_edit')}}
  156. </span>
  157. </template>
  158. <span v-else>{{ row[item.key] }}</span>
  159. </template>
  160. </el-table-column>
  161. <div slot="empty" style="padding: 100px 0">
  162. <tableNoData :text="$t('Table.prompt_slogan')" size="mini"/>
  163. </div>
  164. </el-table>
  165. <div style="height:35px;margin: 20px 0;">
  166. <m-page
  167. :page_no="page_no"
  168. :pageSize="pageSize"
  169. :total="total"
  170. @handleCurrentChange="pageChange"
  171. />
  172. </div>
  173. </div>
  174. <!-- 资产转移弹窗 -->
  175. <m-dialog
  176. :show.sync="isTransferDia"
  177. width="650px"
  178. :title="transferTitMap[transferForm.type]"
  179. @close="isTransferDia = false"
  180. >
  181. <div class="dialog-main operateauth-dialog-cont">
  182. <el-form
  183. ref="formRef"
  184. label-position="left"
  185. hide-required-asterisk
  186. label-width="110px"
  187. :model="transferForm"
  188. @close="cancelTransfer"
  189. >
  190. <!-- 原创建人 -->
  191. <el-form-item :label="$t('SystemManage.OperateAuth.original_creator')" v-if="transferForm.type!=='multiple'">
  192. <span v-if="transferForm.type==='single'">{{ transferForm.creatorName }}</span>
  193. <el-cascader
  194. v-else-if="transferForm.type==='all'"
  195. v-model="transferForm.creatorIds"
  196. :options="userList"
  197. :props="{
  198. value: 'NodeId',
  199. label: 'NodeName',
  200. children: 'Children',
  201. emitPath: false,
  202. multiple:true
  203. }"
  204. collapse-tags
  205. :show-all-levels="false"
  206. clearable
  207. filterable
  208. :placeholder="this.$t('SystemManage.OperateAuth.placeholder04')"
  209. style="width: 250px"
  210. />
  211. </el-form-item>
  212. <el-form-item :label="$t('SystemManage.OperateAuth.new_creator')" prop="newUser" :rules="[
  213. { required: true, message: this.$t('SystemManage.OperateAuth.placeholder05'), trigger: 'change' }
  214. ]"
  215. >
  216. <el-cascader
  217. v-model="transferForm.newUser"
  218. :options="userList"
  219. :props="{
  220. value: 'NodeId',
  221. label: 'NodeName',
  222. children: 'Children',
  223. emitPath: false,
  224. }"
  225. collapse-tags
  226. :show-all-levels="false"
  227. clearable
  228. filterable
  229. :placeholder="$t('SystemManage.OperateAuth.placeholder04')"
  230. style="width: 250px"
  231. />
  232. </el-form-item>
  233. <el-form-item :label="$t('SystemManage.OperateAuth.label_assets')" prop="assetTypes" v-if="transferForm.type==='all'">
  234. <el-select v-model="transferForm.assetTypes" multiple style="width: 250px">
  235. <el-option v-for="item in tabs" :key="item.key" :value="item.key" :label="item.label"/>
  236. </el-select>
  237. </el-form-item>
  238. </el-form>
  239. </div>
  240. <div class="dia-bot">
  241. <el-button
  242. type="primary"
  243. style="margin-right: 60px"
  244. @click="confirmTransferHandle"
  245. >{{$t('Dialog.confirm_save_btn')}}</el-button
  246. >
  247. <el-button type="primary" plain @click="cancelTransfer"
  248. >{{$t('Dialog.cancel_btn')}}</el-button
  249. >
  250. </div>
  251. </m-dialog>
  252. <!-- 权限设置弹窗 -->
  253. <opearAuthSetDia
  254. :isShow.sync="isSetAuthDia"
  255. :userList="userList"
  256. :tabs="tabs"
  257. :subTabs="subTabs"
  258. :form="authForm"
  259. />
  260. <!-- 分类私密设置 -->
  261. <setClassifySecretDia
  262. :isShow.sync="isSetClassifySecret"
  263. :tabs="tabs"
  264. :subTabs="subTabs"
  265. />
  266. </div>
  267. </template>
  268. <script>
  269. import { operateAuthInterface,departInterence } from '@/api/modules/setApi';
  270. import {dataAuthInterface} from '@/api/modules/dataApi.js'
  271. import mPage from '@/components/mPage.vue';
  272. import mDialog from '@/components/mDialog.vue'
  273. import opearAuthSetDia from './components/opearAuthSetDia.vue';
  274. import setClassifySecretDia from './components/setClassifySecretDia.vue';
  275. export default {
  276. components: { mPage,mDialog,opearAuthSetDia,setClassifySecretDia },
  277. computed: {
  278. tabs(){
  279. const tabs = [
  280. { label: this.$t('SystemManage.OperateAuth.tab01'), key: 1 },
  281. { label: this.$t('SystemManage.OperateAuth.tab02'), key: 2 },
  282. { label: this.$t('SystemManage.OperateAuth.tab03'), key: 3 },
  283. { label: this.$t('SystemManage.OperateAuth.tab04'), key: 4 },
  284. { label: this.$t('SystemManage.OperateAuth.tab05'), key: 5 },
  285. { label: this.$t('SystemManage.OperateAuth.tab06'), key: 6 },
  286. ]
  287. return this.currAuthSet===1 ? tabs : tabs.filter(item => [3,4,5,6].includes(item.key))
  288. },
  289. subTabs() {
  290. const subTabs = [
  291. { label: /* '自定义分析' */this.$t('SystemManage.OperateAuth.tab_sub_sheet1'), key: 4 },
  292. { label:/* '时间序列表格' */this.$t('SystemManage.OperateAuth.tab_sub_sheet2'), key: 2 },
  293. { label: /* '混合表格' */this.$t('SystemManage.OperateAuth.tab_sub_sheet3'), key: 3 },
  294. { label: /* '平衡表' */this.$t('SystemManage.OperateAuth.tab_sub_sheet4'), key: 5 },
  295. ]
  296. return this.currAuthSet===1 ? subTabs : subTabs.filter(_ => _.key!==4)
  297. },
  298. tableColums() {
  299. const clomusMap = {
  300. 5: [
  301. { label: this.$t('SystemManage.OperateAuth.table_col_name01'),key: 'Name' },
  302. { label: this.$t('SystemManage.OperateAuth.table_col_name02'),key: 'ClassifyName' },
  303. { label: this.$t('SystemManage.OperateAuth.table_col_name03'),key: 'CreateUserName' },
  304. { label: this.$t('Table.column_operations'),key: 'handle' },
  305. ],
  306. 6: [
  307. { label: this.$t('SystemManage.OperateAuth.table_col_sheet_name'),key: 'Name' },
  308. { label: this.$t('SystemManage.OperateAuth.table_col_sheet_menu'),key: 'ClassifyName' },
  309. { label: this.$t('SystemManage.OperateAuth.table_col_name03'),key: 'CreateUserName' },
  310. { label: this.$t('Table.column_operations'),key: 'handle' },
  311. ],
  312. }
  313. return clomusMap[this.default_tab] ? clomusMap[this.default_tab]
  314. : [
  315. { label: this.$t('SystemManage.OperateAuth.table_col_name04'),key: 'Code' },
  316. { label: this.$t('SystemManage.OperateAuth.table_col_name05'),key: 'Name' },
  317. { label: this.$t('SystemManage.OperateAuth.table_col_name03'),key: 'CreateUserName' },
  318. { label: this.$t('Table.column_operations'),key: 'handle' },
  319. ]
  320. },
  321. phText() {
  322. const textMap = {
  323. 5: this.$t('SystemManage.OperateAuth.placeholder01'),
  324. 6: this.$t('SystemManage.OperateAuth.placeholder_sheet')
  325. }
  326. return textMap[this.default_tab] ? textMap[this.default_tab] : this.$t('SystemManage.OperateAuth.placeholder02')
  327. },
  328. filterDuplicateChecked() {
  329. return Array.from(new Set(this.checkedList))
  330. },
  331. currentLang() {
  332. return this.$store.state.lang
  333. }
  334. },
  335. data() {
  336. return {
  337. currAuthSet: 2,//设置资产
  338. default_tab: 3,
  339. default_sub_tab: '4',
  340. searchForm: {
  341. user: '',
  342. key_word: '',
  343. classifys:[],
  344. checkAll: false, //控制全选显示状态
  345. checkSome: false
  346. },
  347. isSelectAll: false, //真正意义上的全选或不全选
  348. classifyOption: [],
  349. classifysOptKey: 0,
  350. userList: [],
  351. checkedList: [], //不全选勾选中的 或 全选取消勾的
  352. selectionReactCancel:false,//手动设置选中中
  353. tableLoading: false,
  354. tableData:[],
  355. page_no: 1,
  356. total: 0,
  357. pageSize: 10,
  358. statisticCountMap: {},
  359. ruleTips: {
  360. 'classifySet': `
  361. 1、”分类加密设置“:分类默认公开,分类设置加密后,新增用户默认无加密分类的数据权限。<br>
  362. 2、按分类设置权限:加密的分类支持开放权限给用户。<br>
  363. 3、批量设置:同时设置单个或多个数据的权限。
  364. `,
  365. 'classifySetEn': `
  366. 1. "Classified Encryption Settings": By default, categories are public. Once a category is set to encrypted, new users will not have data permissions for the encrypted category by default.<br>
  367. 2. "Set Permissions by Category": Encrypted categories support granting access permissions to users.<br>
  368. 3. "Batch Settings": Set permissions for single or multiple data entries at the same time.
  369. `
  370. },
  371. /* 转移弹窗 */
  372. isTransferDia: false,
  373. transferForm: {
  374. type:'',
  375. creatorName: '',//创建人姓名
  376. creatorIds: [],//创建人id
  377. ids:'',
  378. newUser: '',
  379. assetTypes: []
  380. },
  381. transferTitMap: {
  382. 'all': /* '全量资产转移' */ this.$t('SystemManage.OperateAuth.transfer_title1'),
  383. 'multiple': /* '批量设置资产转移' */this.$t('SystemManage.OperateAuth.transfer_title2'),
  384. 'single':/* '设置资产转移' */this.$t('SystemManage.OperateAuth.transfer_title3'),
  385. },
  386. /* 设置权限弹窗 */
  387. isSetAuthDia: false,
  388. authForm: {
  389. type:'',//分类设置 批量设置 单设置
  390. ids:[],
  391. },
  392. /* 设置加密分类弹窗 */
  393. isSetClassifySecret: false,
  394. }
  395. },
  396. mounted(){
  397. this.getClassifyList()
  398. this.getUserList();
  399. this.getTableData()
  400. },
  401. methods:{
  402. /* 获取分类列表 */
  403. getClassifyList() {
  404. if(!this.default_tab) return
  405. operateAuthInterface.getClassificationBySource({
  406. Source: this.default_tab,
  407. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0
  408. }).then(res => {
  409. if(res.Ret == 200){
  410. this.classifyOption = res.Data.List || []
  411. //如果是三级分类,去掉最后一级分类的child
  412. if([3,4,5,6].includes(this.default_tab)){
  413. this.filterNodes(this.classifyOption)
  414. }
  415. ++this.classifysOptKey;
  416. }
  417. })
  418. },
  419. filterNodes(arr) {
  420. arr.length && arr.forEach(item => {
  421. item.Child && item.Child.length && this.filterNodes(item.Child)
  422. if(item.Child && !item.Child.length) {
  423. delete item.Child
  424. }
  425. })
  426. },
  427. /* 获取用户列表 */
  428. async getUserList() {
  429. const res = await departInterence.getSystemUser();
  430. if (res.Ret !== 200) return
  431. this.userList = res.Data || []
  432. this.filterTreeEmpty({Children:this.userList})
  433. },
  434. // 递归处理数组
  435. filterTreeEmpty(arr) {
  436. function dfs(node) {
  437. if (Array.isArray(node.Children)) {
  438. for (let child of node.Children) {
  439. dfs(child);
  440. }
  441. if(node.Children.length===0) delete node.Children
  442. }
  443. //若为叶子节点,且不为用户,禁止选中
  444. if(!node.Children||!Array.isArray(node.Children)){
  445. if(node.NodeType!==3) node.disabled = true
  446. }
  447. }
  448. dfs(arr);
  449. },
  450. /* 获取用户的资产数量 */
  451. async getUserDataCount() {
  452. if(!this.searchForm.user){
  453. this.statisticCountMap = {}
  454. return
  455. }
  456. const res = await operateAuthInterface.getUserStatistic({ UserId: this.searchForm.user,CountType: this.currAuthSet})
  457. if(res.Ret !== 200) return
  458. this.statisticCountMap = res.Data;
  459. },
  460. getTableData(type) {
  461. if(!this.default_tab) return
  462. let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
  463. this.tableLoading = true;
  464. let params = {
  465. Source: this.default_tab,
  466. UserId: this.searchForm.user || 0,
  467. CurrentIndex: this.page_no,
  468. PageSize: this.pageSize,
  469. Keyword: this.searchForm.key_word,
  470. Classify,
  471. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0
  472. }
  473. operateAuthInterface.list(params).then(res => {
  474. this.tableLoading = false;
  475. if( res.Ret!==200 )return
  476. const { Data } = res;
  477. this.tableData = Data.List || [];
  478. this.total = Data.Paging.Totals;
  479. if(type==='pageChange'){
  480. //页码变化 选中项不做清空
  481. this.checkedSomeSelection()
  482. }else {
  483. this.listCheckAllChange(false)
  484. }
  485. });
  486. },
  487. /* 设置当页数据勾选状态 */
  488. checkedSomeSelection() {
  489. this.selectionReactCancel=true
  490. console.log(this.checkedList,this.isSelectAll)
  491. if(!this.isSelectAll){
  492. this.checkedList.map(_ =>{
  493. let row = this.tableData.find(item => item.DataId==_.DataId)
  494. if(row){ //设置部分选中
  495. setTimeout(()=>{
  496. this.$refs.table.toggleRowSelection(row,true)
  497. },20)
  498. }
  499. })
  500. }else{
  501. // this.$refs.table && this.$refs.table.clearSelection()
  502. this.$refs.table &&this.$refs.table.toggleAllSelection()
  503. this.checkedList.map(_ =>{
  504. let row = this.tableData.find(item => item.DataId==_.DataId)
  505. if(row){ //设置部分不勾选
  506. setTimeout(()=>{
  507. this.$refs.table.toggleRowSelection(row,false)
  508. },20)
  509. }
  510. })
  511. }
  512. setTimeout(()=>{
  513. this.selectionReactCancel=false
  514. },30)
  515. },
  516. /* 切换模块 */
  517. changeTab({key}) {
  518. this.default_tab = key;
  519. this.default_sub_tab = String(this.subTabs[0].key);
  520. this.searchForm.classifys=[]
  521. this.searchForm.key_word=''
  522. this.searchForm.checkAll = false
  523. this.page_no = 1;
  524. this.getClassifyList()
  525. this.getTableData();
  526. },
  527. changeSubTab() {
  528. this.searchForm.classifys=[]
  529. this.searchForm.key_word=''
  530. this.searchForm.checkAll = false
  531. this.page_no = 1;
  532. this.getClassifyList()
  533. this.getTableData();
  534. },
  535. changeSet() {
  536. this.changeTab({key: this.currAuthSet===1?1:3})
  537. this.getUserDataCount()
  538. },
  539. //列表全选或全不选
  540. listCheckAllChange(value){
  541. this.checkedList = []
  542. this.isSelectAll = value
  543. this.$refs.table && this.$refs.table.clearSelection()
  544. value && this.$refs.table && this.$refs.table.toggleAllSelection()
  545. },
  546. //筛选改变
  547. filterChange() {
  548. this.page_no = 1;
  549. this.getTableData()
  550. },
  551. // 页码改变
  552. pageChange(page) {
  553. this.page_no = page;
  554. this.getTableData('pageChange')
  555. },
  556. selectionChange(val) {
  557. if(this.selectionReactCancel) return
  558. // selectAllHandle的触发在selectionChange后面,将selectionChange的逻辑延迟一下
  559. //设置全选框状态 选中 半选 不选
  560. setTimeout(()=>{
  561. let filterChecked = Array.from(new Set(this.checkedList))
  562. //全选
  563. if(
  564. (filterChecked.length===this.total&&this.total>0 && (!this.isSelectAll))
  565. || (filterChecked.length === 0 && this.isSelectAll)
  566. ){
  567. this.searchForm.checkAll = true
  568. this.searchForm.checkSome = false
  569. //不选
  570. }else if(
  571. (filterChecked.length === 0 && (!this.isSelectAll))
  572. || (filterChecked.length === this.total && this.isSelectAll)
  573. ){
  574. this.searchForm.checkAll = false
  575. this.searchForm.checkSome = false
  576. //半选
  577. }else{
  578. this.searchForm.checkAll = false
  579. this.searchForm.checkSome=true
  580. }
  581. },1)
  582. },
  583. //单选
  584. selectHandle(selection,row){ //当前选中的项是进选中还是取消选中中
  585. console.log(selection,row)
  586. if(this.selectionReactCancel) return
  587. //当前项是选中还是取消选
  588. let haveChecked = selection.some(_ => _.DataId === row.DataId);
  589. //全选取消选和不全选选中才有意义
  590. if((haveChecked&&!this.isSelectAll) || (!haveChecked&&this.isSelectAll)) {
  591. this.checkedList.push(row)
  592. }else {
  593. this.checkedList=this.checkedList.filter(_ => _.DataId!==row.DataId)
  594. }
  595. },
  596. //整列选
  597. selectAllPageHandle(selection){
  598. if(this.selectionReactCancel) return
  599. //当前页是选中还是取消
  600. let haveChecked = selection && selection.length>0;
  601. //全选取消选和不全选选中才有意义
  602. if((haveChecked&&!this.isSelectAll) || (!haveChecked&&this.isSelectAll)) {
  603. this.checkedList = [...this.checkedList,...this.tableData]
  604. }else {
  605. let pageIds = this.tableData.map(_ => _.DataId);
  606. this.checkedList = this.checkedList.filter(_ => !pageIds.includes(_.DataId))
  607. }
  608. },
  609. /* 转移所属权限 单转 批量转 全量转*/
  610. transferAuthHandle({ CreateUserName,DataId },type='single') {
  611. if(type === 'multiple' && !this.checkedList.length &&!this.isSelectAll) return this.$message.warning(this.$t('SystemManage.OperateAuth.msg01'))
  612. this.transferForm = {
  613. type,
  614. creatorName: type==='single' ? CreateUserName : '',
  615. creatorIds: [],
  616. ids:type === 'single' ? [DataId] : this.checkedList.map(_ => _.DataId),
  617. newUser: '',
  618. assetTypes: this.tabs.map(_=>_.key)
  619. }
  620. this.isTransferDia = true
  621. },
  622. /* 转移权限 */
  623. async confirmTransferHandle() {
  624. await this.$refs.formRef.validate()
  625. //全量转
  626. if(this.transferForm.type==='all') return this.transferAllHandle()
  627. let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
  628. //单模块转
  629. const res = await operateAuthInterface.authEdit({
  630. Source: this.default_tab,
  631. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0,
  632. DataIdList: this.isSelectAll ? [] : this.transferForm.ids,
  633. NoDataIdList: this.isSelectAll ? this.transferForm.ids : [],
  634. NewUserId: Number(this.transferForm.newUser),
  635. Keyword:this.searchForm.key_word,
  636. UserId:this.searchForm.user||0,
  637. Classify,
  638. IsSelectAll:this.isSelectAll
  639. })
  640. if(res.Ret !== 200) return
  641. this.$message.success(res.Msg);
  642. this.cancelTransfer();
  643. this.getTableData();
  644. },
  645. /* 全量转移 */
  646. async transferAllHandle() {
  647. if(!this.transferForm.creatorIds.length) return this.$message.warning(/* '请选择原创建人' */this.$t('SystemManage.OperateAuth.old_creator_msg'))
  648. if(!this.transferForm.assetTypes.length) return this.$message.warning(/* '请选择要转移资产模块' */)
  649. const res = await operateAuthInterface.transferAllData({
  650. Source: this.transferForm.assetTypes,
  651. OldUserId: this.transferForm.creatorIds.map(_ => Number(_)),
  652. NewUserId: Number(this.transferForm.newUser)
  653. })
  654. if(res.Ret !== 200) return
  655. this.$message.success(res.Msg);
  656. this.cancelTransfer();
  657. this.getTableData();
  658. },
  659. cancelTransfer() {
  660. this.$refs.formRef.resetFields();
  661. this.isTransferDia = false
  662. },
  663. /* 设置加密分类 */
  664. setMenuSecretHandle() {
  665. this.isSetClassifySecret = true
  666. },
  667. /* 设置可见权限 分类设置 单设置 批量设置*/
  668. setAuthHandle({ DataId,Name },type='single') {
  669. if(type === 'multiple' && !this.checkedList.length&&!this.isSelectAll) return this.$message.warning(this.$t('SystemManage.OperateAuth.msg01'))
  670. let checked = type === 'single' ? [ DataId ] : this.checkedList.map(_ => _.DataId)
  671. let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
  672. this.authForm = {
  673. type,
  674. dataName: Name,
  675. params: type!=='classify' ? {
  676. Source: this.default_tab,
  677. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0,
  678. DataIdList: (this.isSelectAll&&type==='multiple') ? [] : checked,
  679. NoDataIdList: (this.isSelectAll&&type==='multiple') ? checked : [],
  680. Keyword:this.searchForm.key_word,
  681. UserId:this.searchForm.user||0,
  682. Classify,
  683. IsSelectAll:(this.isSelectAll&&type==='multiple') ? true : false
  684. } : null
  685. }
  686. this.isSetAuthDia = true
  687. },
  688. authBtn(key){
  689. const {operateAuthPermission,checkPermissionBtn} = this.permissionBtn
  690. return checkPermissionBtn(operateAuthPermission[key])
  691. }
  692. },
  693. }
  694. </script>
  695. <style scoped lang='scss'>
  696. @import "~@/styles/theme-vars.scss";
  697. .operate-auth-box {
  698. * {
  699. box-sizing: border-box;
  700. }
  701. .header,.main {
  702. padding: 20px 30px;
  703. background: #fff;
  704. position: relative;
  705. border: 1px solid #ececec;
  706. border-radius: 4px;
  707. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  708. }
  709. .header {
  710. display: flex;
  711. justify-content: space-between;
  712. margin-bottom: 30px;
  713. gap: 10px;
  714. }
  715. .main {
  716. min-height: calc(100vh - 240px);
  717. .tab-wrapper {
  718. display: flex;
  719. gap: 20px;
  720. margin-bottom: 20px;
  721. .tab-li {
  722. width: 16%;
  723. height: 90px;
  724. background: #ececec;
  725. padding: 15px 20px;
  726. border-radius: 8px;
  727. border: 1px solid transparent;
  728. cursor: pointer;
  729. &.act {
  730. border-color: $theme-color;
  731. background: #e6eefb;
  732. }
  733. }
  734. }
  735. .filter-wrapper {
  736. display: flex;
  737. align-items: center;
  738. justify-content: space-between;
  739. }
  740. }
  741. }
  742. .dialog-main {
  743. padding-left: 110px;
  744. }
  745. .dia-bot {
  746. display: flex;
  747. justify-content: center;
  748. margin-top: 50px;
  749. }
  750. </style>
  751. <style lang="scss">
  752. .operateauth-dialog-cont .el-input {
  753. width: 100%;
  754. }
  755. .operate-auth-box .el-tabs__nav-wrap::after {
  756. background: transparent;
  757. }
  758. </style>