dataOperaAuth.vue 26 KB

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