dataOperaAuth.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  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: 'NodeIdKey',
  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 { traverseTree } from "@/utils/commonOptions"
  272. import mPage from '@/components/mPage.vue';
  273. import mDialog from '@/components/mDialog.vue'
  274. import opearAuthSetDia from './components/opearAuthSetDia.vue';
  275. import setClassifySecretDia from './components/setClassifySecretDia.vue';
  276. export default {
  277. components: { mPage,mDialog,opearAuthSetDia,setClassifySecretDia },
  278. computed: {
  279. tabs(){
  280. const tabs = [
  281. { label: this.$t('SystemManage.OperateAuth.tab01'), key: 1 },
  282. // { label: this.$t('SystemManage.OperateAuth.tab02'), key: 2 },
  283. { label: this.$t('SystemManage.OperateAuth.tab03'), key: 3 },
  284. { label: this.$t('SystemManage.OperateAuth.tab04'), key: 4 },
  285. { label: this.$t('SystemManage.OperateAuth.tab05'), key: 5 },
  286. { label: this.$t('SystemManage.OperateAuth.tab06'), key: 6 },
  287. ]
  288. return this.currAuthSet===1 ? tabs : tabs.filter(item => [3,4,5,6].includes(item.key))
  289. },
  290. subTabs() {
  291. const subTabs = [
  292. { label: /* '自定义分析' */this.$t('SystemManage.OperateAuth.tab_sub_sheet1'), key: 4 },
  293. { label:/* '时间序列表格' */this.$t('SystemManage.OperateAuth.tab_sub_sheet2'), key: 2 },
  294. { label: /* '混合表格' */this.$t('SystemManage.OperateAuth.tab_sub_sheet3'), key: 3 },
  295. { label: /* '平衡表' */this.$t('SystemManage.OperateAuth.tab_sub_sheet4'), key: 5 },
  296. ]
  297. return this.currAuthSet===1 ? subTabs : subTabs.filter(_ => _.key!==4)
  298. },
  299. tableColums() {
  300. const clomusMap = {
  301. 5: [
  302. { label: this.$t('SystemManage.OperateAuth.table_col_name01'),key: 'Name' },
  303. { label: this.$t('SystemManage.OperateAuth.table_col_name02'),key: 'ClassifyName' },
  304. { label: this.$t('SystemManage.OperateAuth.table_col_name03'),key: 'CreateUserName' },
  305. { label: this.$t('Table.column_operations'),key: 'handle' },
  306. ],
  307. 6: [
  308. { label: this.$t('SystemManage.OperateAuth.table_col_sheet_name'),key: 'Name' },
  309. { label: this.$t('SystemManage.OperateAuth.table_col_sheet_menu'),key: 'ClassifyName' },
  310. { label: this.$t('SystemManage.OperateAuth.table_col_name03'),key: 'CreateUserName' },
  311. { label: this.$t('Table.column_operations'),key: 'handle' },
  312. ],
  313. }
  314. return clomusMap[this.default_tab] ? clomusMap[this.default_tab]
  315. : [
  316. { label: this.$t('SystemManage.OperateAuth.table_col_name04'),key: 'Code' },
  317. { label: this.$t('SystemManage.OperateAuth.table_col_name05'),key: 'Name' },
  318. { label: this.$t('SystemManage.OperateAuth.table_col_name03'),key: 'CreateUserName' },
  319. { label: this.$t('Table.column_operations'),key: 'handle' },
  320. ]
  321. },
  322. phText() {
  323. const textMap = {
  324. 5: this.$t('SystemManage.OperateAuth.placeholder01'),
  325. 6: this.$t('SystemManage.OperateAuth.placeholder_sheet')
  326. }
  327. return textMap[this.default_tab] ? textMap[this.default_tab] : this.$t('SystemManage.OperateAuth.placeholder02')
  328. },
  329. filterDuplicateChecked() {
  330. return Array.from(new Set(this.checkedList))
  331. },
  332. currentLang() {
  333. return this.$store.state.lang
  334. }
  335. },
  336. data() {
  337. return {
  338. currAuthSet: 2,//设置资产
  339. default_tab: 3,
  340. default_sub_tab: '4',
  341. searchForm: {
  342. user: '',
  343. key_word: '',
  344. classifys:[],
  345. checkAll: false, //控制全选显示状态
  346. checkSome: false
  347. },
  348. isSelectAll: false, //真正意义上的全选或不全选
  349. classifyOption: [],
  350. classifysOptKey: 0,
  351. userList: [],
  352. checkedList: [], //不全选勾选中的 或 全选取消勾的
  353. selectionReactCancel:false,//手动设置选中中
  354. tableLoading: false,
  355. tableData:[],
  356. page_no: 1,
  357. total: 0,
  358. pageSize: 10,
  359. statisticCountMap: {},
  360. ruleTips: {
  361. 'classifySet': `
  362. 1、”分类加密设置“:分类默认公开,分类设置加密后,新增用户默认无加密分类的数据权限。<br>
  363. 2、按分类设置权限:加密的分类支持开放权限给用户。<br>
  364. 3、批量设置:同时设置单个或多个数据的权限。
  365. `,
  366. 'classifySetEn': `
  367. 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>
  368. 2. "Set Permissions by Category": Encrypted categories support granting access permissions to users.<br>
  369. 3. "Batch Settings": Set permissions for single or multiple data entries at the same time.
  370. `
  371. },
  372. /* 转移弹窗 */
  373. isTransferDia: false,
  374. transferForm: {
  375. type:'',
  376. creatorName: '',//创建人姓名
  377. creatorIds: [],//创建人id
  378. ids:'',
  379. newUser: '',
  380. assetTypes: []
  381. },
  382. transferTitMap: {
  383. 'all': /* '全量资产转移' */ this.$t('SystemManage.OperateAuth.transfer_title1'),
  384. 'multiple': /* '批量设置资产转移' */this.$t('SystemManage.OperateAuth.transfer_title2'),
  385. 'single':/* '设置资产转移' */this.$t('SystemManage.OperateAuth.transfer_title3'),
  386. },
  387. /* 设置权限弹窗 */
  388. isSetAuthDia: false,
  389. authForm: {
  390. type:'',//分类设置 批量设置 单设置
  391. ids:[],
  392. },
  393. /* 设置加密分类弹窗 */
  394. isSetClassifySecret: false,
  395. }
  396. },
  397. mounted(){
  398. this.getClassifyList()
  399. this.getUserList();
  400. this.getTableData()
  401. },
  402. methods:{
  403. /* 获取分类列表 */
  404. getClassifyList() {
  405. if(!this.default_tab) return
  406. operateAuthInterface.getClassificationBySource({
  407. Source: this.default_tab,
  408. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0
  409. }).then(res => {
  410. if(res.Ret == 200){
  411. this.classifyOption = res.Data.List || []
  412. //如果是三级分类,去掉最后一级分类的child
  413. if([3,4,5,6].includes(this.default_tab)){
  414. this.filterNodes(this.classifyOption)
  415. }
  416. ++this.classifysOptKey;
  417. }
  418. })
  419. },
  420. filterNodes(arr) {
  421. arr.length && arr.forEach(item => {
  422. item.Child && item.Child.length && this.filterNodes(item.Child)
  423. if(item.Child && !item.Child.length) {
  424. delete item.Child
  425. }
  426. })
  427. },
  428. /* 获取用户列表 */
  429. async getUserList() {
  430. const res = await departInterence.getSystemUser();
  431. if (res.Ret !== 200) return
  432. this.userList = res.Data || []
  433. //遍历加上唯一的key
  434. traverseTree(
  435. {Children:this.userList},
  436. {
  437. childKey:'Children',
  438. nodeKey:'NodeIdKey',
  439. cb:(node)=>node.NodeType===3,
  440. cb2:(node)=>node.NodeId+''
  441. }
  442. )
  443. this.filterTreeEmpty({Children:this.userList})
  444. },
  445. // 递归处理数组
  446. filterTreeEmpty(arr) {
  447. function dfs(node) {
  448. if (Array.isArray(node.Children)) {
  449. for (let child of node.Children) {
  450. dfs(child);
  451. }
  452. if(node.Children.length===0) delete node.Children
  453. }
  454. //若为叶子节点,且不为用户,禁止选中
  455. if(!node.Children||!Array.isArray(node.Children)){
  456. if(node.NodeType!==3) node.disabled = true
  457. }
  458. }
  459. dfs(arr);
  460. },
  461. /* 获取用户的资产数量 */
  462. async getUserDataCount() {
  463. if(!this.searchForm.user){
  464. this.statisticCountMap = {}
  465. return
  466. }
  467. const res = await operateAuthInterface.getUserStatistic({ UserId: this.searchForm.user,CountType: this.currAuthSet})
  468. if(res.Ret !== 200) return
  469. this.statisticCountMap = res.Data;
  470. },
  471. getTableData(type) {
  472. if(!this.default_tab) return
  473. let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
  474. this.tableLoading = true;
  475. let params = {
  476. Source: this.default_tab,
  477. UserId: this.searchForm.user || 0,
  478. CurrentIndex: this.page_no,
  479. PageSize: this.pageSize,
  480. Keyword: this.searchForm.key_word,
  481. Classify,
  482. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0
  483. }
  484. operateAuthInterface.list(params).then(res => {
  485. this.tableLoading = false;
  486. if( res.Ret!==200 )return
  487. const { Data } = res;
  488. this.tableData = Data.List || [];
  489. this.total = Data.Paging.Totals;
  490. if(type==='pageChange'){
  491. //页码变化 选中项不做清空
  492. this.checkedSomeSelection()
  493. }else {
  494. this.listCheckAllChange(false)
  495. }
  496. });
  497. },
  498. /* 设置当页数据勾选状态 */
  499. checkedSomeSelection() {
  500. this.selectionReactCancel=true
  501. console.log(this.checkedList,this.isSelectAll)
  502. if(!this.isSelectAll){
  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,true)
  508. },20)
  509. }
  510. })
  511. }else{
  512. // this.$refs.table && this.$refs.table.clearSelection()
  513. this.$refs.table &&this.$refs.table.toggleAllSelection()
  514. this.checkedList.map(_ =>{
  515. let row = this.tableData.find(item => item.DataId==_.DataId)
  516. if(row){ //设置部分不勾选
  517. setTimeout(()=>{
  518. this.$refs.table.toggleRowSelection(row,false)
  519. },20)
  520. }
  521. })
  522. }
  523. setTimeout(()=>{
  524. this.selectionReactCancel=false
  525. },30)
  526. },
  527. /* 切换模块 */
  528. changeTab({key}) {
  529. this.default_tab = key;
  530. this.default_sub_tab = String(this.subTabs[0].key);
  531. this.searchForm.classifys=[]
  532. this.searchForm.key_word=''
  533. this.searchForm.checkAll = false
  534. this.page_no = 1;
  535. this.getClassifyList()
  536. this.getTableData();
  537. },
  538. changeSubTab() {
  539. this.searchForm.classifys=[]
  540. this.searchForm.key_word=''
  541. this.searchForm.checkAll = false
  542. this.page_no = 1;
  543. this.getClassifyList()
  544. this.getTableData();
  545. },
  546. changeSet() {
  547. this.changeTab({key: this.currAuthSet===1?1:3})
  548. this.getUserDataCount()
  549. },
  550. //列表全选或全不选
  551. listCheckAllChange(value){
  552. this.checkedList = []
  553. this.isSelectAll = value
  554. this.$refs.table && this.$refs.table.clearSelection()
  555. value && this.$refs.table && this.$refs.table.toggleAllSelection()
  556. },
  557. //筛选改变
  558. filterChange() {
  559. this.page_no = 1;
  560. this.getTableData()
  561. },
  562. // 页码改变
  563. pageChange(page) {
  564. this.page_no = page;
  565. this.getTableData('pageChange')
  566. },
  567. selectionChange(val) {
  568. if(this.selectionReactCancel) return
  569. // selectAllHandle的触发在selectionChange后面,将selectionChange的逻辑延迟一下
  570. //设置全选框状态 选中 半选 不选
  571. setTimeout(()=>{
  572. let filterChecked = Array.from(new Set(this.checkedList))
  573. //全选
  574. if(
  575. (filterChecked.length===this.total&&this.total>0 && (!this.isSelectAll))
  576. || (filterChecked.length === 0 && this.isSelectAll)
  577. ){
  578. this.searchForm.checkAll = true
  579. this.searchForm.checkSome = false
  580. //不选
  581. }else if(
  582. (filterChecked.length === 0 && (!this.isSelectAll))
  583. || (filterChecked.length === this.total && this.isSelectAll)
  584. ){
  585. this.searchForm.checkAll = false
  586. this.searchForm.checkSome = false
  587. //半选
  588. }else{
  589. this.searchForm.checkAll = false
  590. this.searchForm.checkSome=true
  591. }
  592. },1)
  593. },
  594. //单选
  595. selectHandle(selection,row){ //当前选中的项是进选中还是取消选中中
  596. console.log(selection,row)
  597. if(this.selectionReactCancel) return
  598. //当前项是选中还是取消选
  599. let haveChecked = selection.some(_ => _.DataId === row.DataId);
  600. //全选取消选和不全选选中才有意义
  601. if((haveChecked&&!this.isSelectAll) || (!haveChecked&&this.isSelectAll)) {
  602. this.checkedList.push(row)
  603. }else {
  604. this.checkedList=this.checkedList.filter(_ => _.DataId!==row.DataId)
  605. }
  606. },
  607. //整列选
  608. selectAllPageHandle(selection){
  609. if(this.selectionReactCancel) return
  610. //当前页是选中还是取消
  611. let haveChecked = selection && selection.length>0;
  612. //全选取消选和不全选选中才有意义
  613. if((haveChecked&&!this.isSelectAll) || (!haveChecked&&this.isSelectAll)) {
  614. this.checkedList = [...this.checkedList,...this.tableData]
  615. }else {
  616. let pageIds = this.tableData.map(_ => _.DataId);
  617. this.checkedList = this.checkedList.filter(_ => !pageIds.includes(_.DataId))
  618. }
  619. },
  620. /* 转移所属权限 单转 批量转 全量转*/
  621. transferAuthHandle({ CreateUserName,DataId },type='single') {
  622. if(type === 'multiple' && !this.checkedList.length &&!this.isSelectAll) return this.$message.warning(this.$t('SystemManage.OperateAuth.msg01'))
  623. this.transferForm = {
  624. type,
  625. creatorName: type==='single' ? CreateUserName : '',
  626. creatorIds: [],
  627. ids:type === 'single' ? [DataId] : this.checkedList.map(_ => _.DataId),
  628. newUser: '',
  629. assetTypes: this.tabs.map(_=>_.key)
  630. }
  631. this.isTransferDia = true
  632. },
  633. /* 转移权限 */
  634. async confirmTransferHandle() {
  635. await this.$refs.formRef.validate()
  636. //全量转
  637. if(this.transferForm.type==='all') return this.transferAllHandle()
  638. let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
  639. //单模块转
  640. const res = await operateAuthInterface.authEdit({
  641. Source: this.default_tab,
  642. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0,
  643. DataIdList: this.isSelectAll ? [] : this.transferForm.ids,
  644. NoDataIdList: this.isSelectAll ? this.transferForm.ids : [],
  645. NewUserId: Number(this.transferForm.newUser),
  646. Keyword:this.searchForm.key_word,
  647. UserId:this.searchForm.user||0,
  648. Classify,
  649. IsSelectAll:this.isSelectAll
  650. })
  651. if(res.Ret !== 200) return
  652. this.$message.success(res.Msg);
  653. this.cancelTransfer();
  654. this.getTableData();
  655. },
  656. /* 全量转移 */
  657. async transferAllHandle() {
  658. if(!this.transferForm.creatorIds.length) return this.$message.warning(/* '请选择原创建人' */this.$t('SystemManage.OperateAuth.old_creator_msg'))
  659. if(!this.transferForm.assetTypes.length) return this.$message.warning(/* '请选择要转移资产模块' */)
  660. const res = await operateAuthInterface.transferAllData({
  661. Source: this.transferForm.assetTypes,
  662. OldUserId: this.transferForm.creatorIds.map(_ => Number(_)),
  663. NewUserId: Number(this.transferForm.newUser)
  664. })
  665. if(res.Ret !== 200) return
  666. this.$message.success(res.Msg);
  667. this.cancelTransfer();
  668. this.getTableData();
  669. },
  670. cancelTransfer() {
  671. this.$refs.formRef.resetFields();
  672. this.isTransferDia = false
  673. },
  674. /* 设置加密分类 */
  675. setMenuSecretHandle() {
  676. this.isSetClassifySecret = true
  677. },
  678. /* 设置可见权限 分类设置 单设置 批量设置*/
  679. setAuthHandle({ DataId,Name },type='single') {
  680. if(type === 'multiple' && !this.checkedList.length&&!this.isSelectAll) return this.$message.warning(this.$t('SystemManage.OperateAuth.msg01'))
  681. let checked = type === 'single' ? [ DataId ] : this.checkedList.map(_ => _.DataId)
  682. let Classify = Array.from(new Set(this.searchForm.classifys.flat())).join(',')
  683. this.authForm = {
  684. type,
  685. dataName: Name,
  686. params: type!=='classify' ? {
  687. Source: this.default_tab,
  688. SubSource: this.default_tab === 6 ? Number(this.default_sub_tab) : 0,
  689. DataIdList: (this.isSelectAll&&type==='multiple') ? [] : checked,
  690. NoDataIdList: (this.isSelectAll&&type==='multiple') ? checked : [],
  691. Keyword:this.searchForm.key_word,
  692. UserId:this.searchForm.user||0,
  693. Classify,
  694. IsSelectAll:(this.isSelectAll&&type==='multiple') ? true : false
  695. } : null
  696. }
  697. this.isSetAuthDia = true
  698. },
  699. authBtn(key){
  700. const {operateAuthPermission,checkPermissionBtn} = this.permissionBtn
  701. return checkPermissionBtn(operateAuthPermission[key])
  702. }
  703. },
  704. }
  705. </script>
  706. <style scoped lang='scss'>
  707. @import "~@/styles/theme-vars.scss";
  708. .operate-auth-box {
  709. * {
  710. box-sizing: border-box;
  711. }
  712. .header,.main {
  713. padding: 20px 30px;
  714. background: #fff;
  715. position: relative;
  716. border: 1px solid #ececec;
  717. border-radius: 4px;
  718. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  719. }
  720. .header {
  721. display: flex;
  722. justify-content: space-between;
  723. margin-bottom: 30px;
  724. gap: 10px;
  725. }
  726. .main {
  727. min-height: calc(100vh - 240px);
  728. .tab-wrapper {
  729. display: flex;
  730. gap: 20px;
  731. margin-bottom: 20px;
  732. .tab-li {
  733. width: 16%;
  734. height: 90px;
  735. background: #ececec;
  736. padding: 15px 20px;
  737. border-radius: 8px;
  738. border: 1px solid transparent;
  739. cursor: pointer;
  740. &.act {
  741. border-color: $theme-color;
  742. background: #e6eefb;
  743. }
  744. }
  745. }
  746. .filter-wrapper {
  747. display: flex;
  748. align-items: center;
  749. justify-content: space-between;
  750. }
  751. }
  752. }
  753. .dialog-main {
  754. padding-left: 110px;
  755. }
  756. .dia-bot {
  757. display: flex;
  758. justify-content: center;
  759. margin-top: 50px;
  760. }
  761. </style>
  762. <style lang="scss">
  763. .operateauth-dialog-cont .el-input {
  764. width: 100%;
  765. }
  766. .operate-auth-box .el-tabs__nav-wrap::after {
  767. background: transparent;
  768. }
  769. </style>