|
@@ -44,7 +44,7 @@ import PublicPageDialog from '@/components/PublicPageDialog'
|
|
|
import AdvancedQuery from '@/components/AdvancedQuery'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
import { listToTree } from '@/utils/validate'
|
|
|
-import { Query, newData, modifyData, moveData, } from "@/api/webApi"
|
|
|
+import { Query, newData, modifyData, moveData, getAuthorization, authorization } from "@/api/webApi"
|
|
|
import { formatChange } from '@/utils/validate'
|
|
|
|
|
|
export default {
|
|
@@ -80,42 +80,29 @@ export default {
|
|
|
rowData: {},
|
|
|
selectOptions: [],
|
|
|
queryId: 6,
|
|
|
- userList: [
|
|
|
- {
|
|
|
- path: '/userpPermission',
|
|
|
- tid: 7
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/userGroupPermission',
|
|
|
- tid: 6
|
|
|
- }
|
|
|
- ]
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
listMap: {
|
|
|
handler (row) {
|
|
|
if (Object.keys(row).length) {
|
|
|
- const queryItem = {}
|
|
|
- const pname = this.queryId == 7 ? '用户' : '用户组'
|
|
|
- queryItem[this.nodeKey] = row[this.nodeKey]
|
|
|
+ const queryItem = _.cloneDeep(row)
|
|
|
+ if (queryItem.children) delete queryItem.children
|
|
|
this.ischeck = true
|
|
|
this.checkDatas = []
|
|
|
this.queryItem = queryItem
|
|
|
this.$refs.tree.setCheckedKeys([])
|
|
|
- this.queryTreeData(this.queryId, queryItem, pname)
|
|
|
+ this.queryTreeData(queryItem, '权限')
|
|
|
}
|
|
|
},
|
|
|
deep: true,
|
|
|
immediate: true
|
|
|
},
|
|
|
treeMap: {
|
|
|
- handler (row) {
|
|
|
- const { nodeKey, nodeValue } = row
|
|
|
- if (nodeKey) this.nodeKey = nodeKey
|
|
|
- if (nodeValue) {
|
|
|
- // this.defaultProps.label = nodeValue
|
|
|
- this.dataKey = nodeValue
|
|
|
+ handler (obj) {
|
|
|
+ if (Object.keys(obj).length) {
|
|
|
+ const { serviceid, pagename } = obj
|
|
|
+ this.queryAllAuthData(serviceid, pagename)
|
|
|
}
|
|
|
},
|
|
|
deep: true,
|
|
@@ -125,15 +112,54 @@ export default {
|
|
|
computed: {
|
|
|
...mapGetters(['authArrs'])
|
|
|
},
|
|
|
- created () {
|
|
|
- const { path } = this.$route
|
|
|
- const pitem = this.userList.filter(item => item.path == path)
|
|
|
- this.queryId = pitem[0].tid
|
|
|
- },
|
|
|
mounted () {
|
|
|
- this.setAuthData()
|
|
|
+
|
|
|
+ // this.setAuthData()
|
|
|
},
|
|
|
methods: {
|
|
|
+ async queryAllAuthData (serviceid, pagename) {
|
|
|
+ this.loading = true;
|
|
|
+ const datacontent = { filter: { 1: 1 } }
|
|
|
+ try {
|
|
|
+ const { code, returnData } = await Query({
|
|
|
+ serviceid,
|
|
|
+ datacontent,
|
|
|
+ event: '0'
|
|
|
+ });
|
|
|
+ if (code == 0 && returnData?.length) {
|
|
|
+ const name = '全部'
|
|
|
+ const alldata = this.disableTreeData([...returnData])
|
|
|
+ const treeMenu = listToTree([...alldata], 'superiorid', 'pageconfigurationid')
|
|
|
+ // const treeObj = { serviceid: name, superiorid: name, children: treeMenu }
|
|
|
+ // treeObj['pagename'] = name
|
|
|
+ // treeObj['pageconfigurationid'] = '-1'
|
|
|
+ // const treeMenuAll = [treeObj]
|
|
|
+ // this.defaultKeys = ['-1']
|
|
|
+ this.data = treeMenu
|
|
|
+ } else {
|
|
|
+ this.$message.error(`获取${pagename}数据失败`);
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ this.$message.error(`获取${pagename}数据失败`);
|
|
|
+ }
|
|
|
+ this.loading = false;
|
|
|
+ },
|
|
|
+ disableTreeData (arr = []) {
|
|
|
+ if (!arr.length) return
|
|
|
+ const alldata = _.cloneDeep(arr)
|
|
|
+ const isdata = _.cloneDeep(this.authArrs)
|
|
|
+ const nodata = this.findRepetData(alldata, isdata)
|
|
|
+ if (nodata?.length) {
|
|
|
+ alldata.map(item => {
|
|
|
+ nodata.map(ci => {
|
|
|
+ if (item.pageconfigurationid == ci.pageconfigurationid) {
|
|
|
+ item.disabled = true
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ return alldata
|
|
|
+ },
|
|
|
restDataRow () {
|
|
|
const pname = this.queryId == 7 ? '用户' : '用户组'
|
|
|
this.ischeck = true
|
|
@@ -242,18 +268,13 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//获取当前用户组/用户已有权限
|
|
|
- async queryTreeData (serviceid, defaultfilter, pagename) {
|
|
|
+ async queryTreeData (dataContent, pagename) {
|
|
|
this.loading = true;
|
|
|
- const datacontent = { filter: defaultfilter }
|
|
|
try {
|
|
|
- const { code, returnData } = await Query({
|
|
|
- serviceid,
|
|
|
- datacontent,
|
|
|
- event: '0'
|
|
|
- });
|
|
|
+ const { code, returnData } = await getAuthorization({ datacontent: dataContent });
|
|
|
if (code == 0) {
|
|
|
const ndata = _.cloneDeep(returnData)
|
|
|
- this.setAuthData(ndata)
|
|
|
+ // this.setAuthData(ndata)
|
|
|
this.$nextTick(() => {
|
|
|
this.checkAuthData(ndata)
|
|
|
})
|
|
@@ -312,27 +333,17 @@ export default {
|
|
|
if (item.children) delete item.children
|
|
|
const paramsItem = {
|
|
|
pageconfigurationid: item.pageconfigurationid,
|
|
|
- userpermissionsid: item.userpermissionsid,
|
|
|
- serviceid: item.serviceid,
|
|
|
- insetcolumnlist: item.insetcolumnlist || '',
|
|
|
- updatecolumnlist: item.updatecolumnlist || '',
|
|
|
- selectcolumnlist: item.selectcolumnlist || '',
|
|
|
- filterset: item.filterset || ''
|
|
|
- }
|
|
|
- if (this.queryId == 7) {
|
|
|
- paramsItem.userid = item.userid
|
|
|
}
|
|
|
const params = {
|
|
|
- serviceid: this.queryId,
|
|
|
- datacontent: formatChange(Object.assign(paramsItem, this.queryItem), event, key),
|
|
|
+ datacontent: Object.assign(paramsItem, this.queryItem),
|
|
|
event
|
|
|
}
|
|
|
- type == 'add' ? querys.push(newData(params)) : type == 'edit' ? querys.push(modifyData(params)) : querys.push(moveData(params))
|
|
|
+ querys.push(authorization(params))
|
|
|
})
|
|
|
- this.getAnscyData(querys, type)
|
|
|
+ this.getAnscyData(querys)
|
|
|
},
|
|
|
//获取异步数据
|
|
|
- async getAnscyData (allResult, type) {
|
|
|
+ async getAnscyData (allResult) {
|
|
|
if (!allResult.length) return
|
|
|
this.loading = true
|
|
|
const results = await Promise.allSettled(allResult)
|