|
@@ -66,12 +66,11 @@
|
|
|
<div class="newService-content-left-bottom">
|
|
|
<el-scrollbar ref="scroll" style="height: 100%">
|
|
|
<div class="newService-content-left-bottom-tree">
|
|
|
- <el-tree ref="tree" :data="treeData" :props="defaultProps" highlight-current :filter-node-method="filterNode" default-expand-all node-key="auth_id" @node-click="handleNodeClick" :expand-on-click-node="false">
|
|
|
+ <el-tree ref="tree" show-checkbox :data="treeData" :props="defaultProps" highlight-current :filter-node-method="filterNode" default-expand-all node-key="auth_id" @check="checkChange" @node-click="handleNodeClick" :expand-on-click-node="false">
|
|
|
<span class="custom-tree-node" slot-scope="{ node, data }">
|
|
|
<span class="customTxt">{{ node.label }}</span>
|
|
|
<span v-show="treeCheckId == data.auth_id" class="customBtn">
|
|
|
- <span v-if="data.auth_id != 0" class="ym">列授权</span>
|
|
|
- <span v-if="data.auth_id != 0" class="rm" @click.stop="handleRemove(node, data)">删除</span>
|
|
|
+ <span @click="setItem(node,data)" v-if="data.auth_id != 0 && data.auth_type == 4" class="ym">列授权</span>
|
|
|
</span>
|
|
|
</span>
|
|
|
</el-tree>
|
|
@@ -82,19 +81,24 @@
|
|
|
<div class="newService-content-right-bottom contents2 flex1">
|
|
|
<div class="newService-content-left-top">
|
|
|
<div class="flex head">
|
|
|
- <div class="title">权限列表</div>
|
|
|
+ <div class="title">列授权</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="newService-content-left-bottom">
|
|
|
- <el-scrollbar ref="scroll" style="height: 100%">
|
|
|
- <el-checkbox-group v-model="checkGroup" size="small">
|
|
|
- <el-row :gutter="20">
|
|
|
- <el-col v-for="(item,index) in checkArrs" :key="index" :span="8">
|
|
|
- <el-checkbox :label="item.value" border>{{ item.label }}</el-checkbox>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </el-checkbox-group>
|
|
|
- </el-scrollbar>
|
|
|
+ <template v-if="checkArrs.length">
|
|
|
+ <el-scrollbar ref="scroll" style="height: 100%">
|
|
|
+ <el-checkbox-group @change="groupChange" v-model="checkGroup" size="small">
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col v-for="(item,index) in checkArrs" :key="index" :span="8">
|
|
|
+ <el-checkbox :label="item.columnName" border>{{ item.columnLabel }}</el-checkbox>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-checkbox-group>
|
|
|
+ </el-scrollbar>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <el-empty description="暂无数据"></el-empty>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -142,12 +146,15 @@ export default {
|
|
|
}
|
|
|
],
|
|
|
treeCheckId: '',
|
|
|
+ treeCheckObj: {},
|
|
|
defaultProps: {
|
|
|
children: 'children',
|
|
|
label: 'auth_name'
|
|
|
},
|
|
|
checkGroup: [],
|
|
|
- checkArrs: new Array(10).fill({ label: '111', value: '111' })
|
|
|
+ checkArrs: [],
|
|
|
+ checkDatas: [],
|
|
|
+ checkGroups: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -242,22 +249,38 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//服务列表-点击
|
|
|
- handleClick (item, index) {
|
|
|
+ async handleClick (item, index) {
|
|
|
this.dataType = 'edit'
|
|
|
this.dataObj = _.cloneDeep(item)
|
|
|
this.formInline = _.cloneDeep(item)
|
|
|
this.activeIndex = index
|
|
|
this.flag = false
|
|
|
+ const result = await this.getQuery(SERVICE_ID.authTreeId, false, { role_id: item.role_ID })
|
|
|
+ this.checkDatas.push(result)
|
|
|
+ if (result && result.length) {
|
|
|
+ const datas = []
|
|
|
+ result.forEach(item => {
|
|
|
+ datas.push(item.auth_id)
|
|
|
+ })
|
|
|
+ this.$refs.tree.setCheckedKeys(datas)
|
|
|
+ const treeDatas = this.$refs.tree.getCheckedNodes().concat(this.$refs.tree.getHalfCheckedNodes())
|
|
|
+ const res = [...treeDatas, ...result].filter((item) => !(treeDatas.some((p) => item.auth_id == p.auth_id) && result.some((c) => item.auth_id == c.auth_id)))
|
|
|
+ setTimeout(() => {
|
|
|
+ res.forEach((item) => {
|
|
|
+ this.$refs.tree.setChecked(item.auth_id, false, false);
|
|
|
+ });
|
|
|
+ }, 50);
|
|
|
+ }
|
|
|
},
|
|
|
//服务列表-保存
|
|
|
handleSave () {
|
|
|
if (this.dataObj.role_ID && this.dataType == 'edit') {
|
|
|
- this.generalDataReception(2, this.formInline)
|
|
|
+ this.generalDataReception(this.queryId, 2, this.formInline)
|
|
|
} else if (this.dataType == 'add' && this.arrs[this.arrs.length - 1].role_ID) {
|
|
|
this.formInline.role_ID = this.arrs[this.arrs.length - 1].role_ID
|
|
|
- this.generalDataReception(2, this.formInline)
|
|
|
+ this.generalDataReception(this.queryId, 2, this.formInline)
|
|
|
} else if (this.dataType == 'add') {
|
|
|
- this.generalDataReception(1, this.formInline)
|
|
|
+ this.generalDataReception(this.queryId, 1, this.formInline)
|
|
|
}
|
|
|
else {
|
|
|
this.$message.error('请先选中服务后再操作')
|
|
@@ -271,7 +294,7 @@ export default {
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(() => {
|
|
|
- this.generalDataReception(3, this.dataObj)
|
|
|
+ this.generalDataReception(this.queryId, 3, this.dataObj)
|
|
|
this.activeIndex = null;
|
|
|
this.dataObj = {};
|
|
|
for (const key in this.formInline) {
|
|
@@ -292,7 +315,7 @@ export default {
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(() => {
|
|
|
- this.generalDataReception(3, this.arrs[this.arrs.length - 1])
|
|
|
+ this.generalDataReception(this.queryId, 3, this.arrs[this.arrs.length - 1])
|
|
|
this.activeIndex = null;
|
|
|
this.dataObj = {};
|
|
|
for (const key in this.formInline) {
|
|
@@ -317,10 +340,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//服务列表-增/删/改
|
|
|
- async generalDataReception (event, data) {
|
|
|
+ async generalDataReception (id = this.queryId, event, data, type) {
|
|
|
try {
|
|
|
const params = {
|
|
|
- serviceId: this.queryId,
|
|
|
+ serviceId: id,
|
|
|
dataContent: data,
|
|
|
event: `${event}`,
|
|
|
};
|
|
@@ -332,8 +355,12 @@ export default {
|
|
|
: await moveData(params);
|
|
|
if (code == 0) {
|
|
|
this.$message.success("操作成功");
|
|
|
- this.resetTable();
|
|
|
- this.getQueryList(this.queryId);
|
|
|
+ if (type) {
|
|
|
+
|
|
|
+ } else {
|
|
|
+ this.resetTable();
|
|
|
+ this.getQueryList(this.queryId);
|
|
|
+ }
|
|
|
} else {
|
|
|
this.$message.error("操作失败");
|
|
|
}
|
|
@@ -343,6 +370,105 @@ export default {
|
|
|
},
|
|
|
handleNodeClick (data) {
|
|
|
this.treeCheckId = data.auth_id
|
|
|
+ this.treeCheckObj = data
|
|
|
+ },
|
|
|
+ checkChange () {
|
|
|
+ if (this.dataObj.role_ID) {
|
|
|
+ const datas = this.$refs.tree.getCheckedNodes().concat(this.$refs.tree.getHalfCheckedNodes());
|
|
|
+ const arrs = datas.filter(item => item.auth_id != 0)
|
|
|
+ this.checkDatas.push(arrs)
|
|
|
+ const data1 = this.checkDatas[this.checkDatas.length - 1]; //最后一条数据
|
|
|
+ const data2 = this.checkDatas[this.checkDatas.length - 2]; //倒数第二条数据
|
|
|
+ if (data1.length > data2.length) {
|
|
|
+ this.checksBoxTs(data1, data2, "add");
|
|
|
+ } else {
|
|
|
+ this.checksBoxTs(data2, data1, "del");
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.$message.error('请选中角色后再操作');
|
|
|
+ this.$refs.tree.setCheckedKeys([]);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async checksBoxTs (datas, arr, type) {
|
|
|
+ const res = [...datas, ...arr].filter((item) => !(datas.some((p) => item.auth_id == p.auth_id) && arr.some((c) => item.auth_id == c.auth_id)));
|
|
|
+ res.forEach(item => {
|
|
|
+ item.role_id = this.dataObj.role_ID
|
|
|
+ })
|
|
|
+ if (type == 'add') {
|
|
|
+ this.generalDataReception(SERVICE_ID.authTreeId, 1, res, true)
|
|
|
+ } else {
|
|
|
+ this.generalDataReception(SERVICE_ID.authTreeId, 3, res, true)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async setItem (node, data) {
|
|
|
+ if (this.dataObj.role_ID) {
|
|
|
+ const result = await this.getQuery(SERVICE_ID.getTableColumnId, false, { serviceOutPutId: data.auth_id })
|
|
|
+ if (result && result) {
|
|
|
+ this.checkArrs = result
|
|
|
+ const res = await this.getQuery(SERVICE_ID.authTreeId, false, { auth_id: data.auth_id, role_id: this.dataObj.role_ID })
|
|
|
+ if (res && res.length) {
|
|
|
+ const datas = []
|
|
|
+ res.forEach(item => {
|
|
|
+ if (item.columnname) {
|
|
|
+ datas.push(item.columnname)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ if (datas.length) {
|
|
|
+ this.checkGroups.push(datas)
|
|
|
+ }
|
|
|
+ this.checkGroup = datas
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.$message.error('请选中角色后再操作');
|
|
|
+ }
|
|
|
+ },
|
|
|
+ groupChange (val) {
|
|
|
+ this.checkGroups.push(val)
|
|
|
+ if (this.checkGroups.length == 1) {
|
|
|
+ const res = this.getColName(val)
|
|
|
+ const result = this.sendCheckData(res)
|
|
|
+ this.generalDataReception(SERVICE_ID.authTreeId, 1, result, true)
|
|
|
+ } else if (this.checkGroups.length > 1) {
|
|
|
+ const data1 = this.checkGroups[this.checkGroups.length - 1]; //最后一条数据
|
|
|
+ const data2 = this.checkGroups[this.checkGroups.length - 2]; //倒数第二条数据
|
|
|
+ const msg = [...data1, ...data2].filter((item) => !(data1.some((p) => item == p) && data2.some((c) => item == c)));
|
|
|
+ const cap = this.getColName(msg)
|
|
|
+ const result = this.sendCheckData(cap)
|
|
|
+ if (data1.length > data2.length) {
|
|
|
+ this.generalDataReception(SERVICE_ID.authTreeId, 1, result, true)
|
|
|
+ } else {
|
|
|
+ this.generalDataReception(SERVICE_ID.authTreeId, 3, result, true)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ sendCheckData (arr) {
|
|
|
+ const newData = []
|
|
|
+ arr.forEach(item => {
|
|
|
+ const obj = {
|
|
|
+ "role_id": this.dataObj.role_ID,
|
|
|
+ "role_name": this.dataObj.role_name,
|
|
|
+ "role_status": this.dataObj.role_status,
|
|
|
+ "auth_id": this.treeCheckObj.auth_id,
|
|
|
+ "auth_type": this.treeCheckObj.auth_type,
|
|
|
+ "queryTemplateColumnSetID": item.queryTemplateColumnSetID,
|
|
|
+ "columnLabel": item.columnLabel,
|
|
|
+ "columnname": item.columnName
|
|
|
+ }
|
|
|
+ newData.push(obj)
|
|
|
+ })
|
|
|
+ return newData
|
|
|
+ },
|
|
|
+ getColName (arr) {
|
|
|
+ const res = []
|
|
|
+ this.checkArrs.forEach(item => {
|
|
|
+ arr.forEach(p => {
|
|
|
+ if (item.columnName == p) {
|
|
|
+ res.push(item)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ return res
|
|
|
},
|
|
|
handleRemove (node, data) {
|
|
|
|