|
@@ -86,14 +86,14 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="newService-content-left-bottom">
|
|
|
- <el-table ref="multipleTable" :data="checkArrs" border stripe :maxHeight="tableHeight" tooltip-effect="dark" style="width: 100%;" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column type="selection" label="选中" width="55">
|
|
|
+ <el-table ref="multipleTable" class="multipleTable" :data="checkArrs" border stripe :maxHeight="tableHeight" tooltip-effect="dark" style="width: 100%;" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column label-class-name="DisabledSelection" type="selection" width="100">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="columnLabel" label="列名">
|
|
|
</el-table-column>
|
|
|
<el-table-column label="行授权">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input size="small" placeholder="请输入内容" v-model="scope.row.columnName" clearable>
|
|
|
+ <el-input size="small" placeholder="请输入内容" v-model="scope.row.rowauth" clearable>
|
|
|
</el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -428,6 +428,7 @@ export default {
|
|
|
}
|
|
|
this.tipMsg(code)
|
|
|
}
|
|
|
+ // this.checkArrs = []
|
|
|
},
|
|
|
async setItem (node, data) {
|
|
|
if (this.dataObj.role_ID) {
|
|
@@ -437,9 +438,10 @@ export default {
|
|
|
const res = await this.getQueryList(SERVICE_ID.authTreeId, [{ auth_id: data.auth_id }, { role_id: this.dataObj.role_ID }], ['auth_id', 'role_id'])
|
|
|
if (res && res.length) {
|
|
|
const resmsg = []
|
|
|
- result.forEach(item => {
|
|
|
+ result.forEach((item) => {
|
|
|
res.forEach(p => {
|
|
|
- if (item.columnName == p.columnname) {
|
|
|
+ if (item.queryTemplateColumnSetID == p.queryTemplateColumnSetID) {
|
|
|
+ item.rowauth = p.rowauth
|
|
|
resmsg.push(item)
|
|
|
}
|
|
|
})
|
|
@@ -479,20 +481,30 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- sendCheckData (arr) {
|
|
|
+ sendCheckData (arr, type = false) {
|
|
|
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
|
|
|
+ if (type) {
|
|
|
+ const obj = {
|
|
|
+ "role_id": this.dataObj.role_ID,
|
|
|
+ "auth_id": this.treeCheckObj.auth_id,
|
|
|
+ "queryTemplateColumnSetID": item.queryTemplateColumnSetID,
|
|
|
+ }
|
|
|
+ newData.push(obj)
|
|
|
+ } else {
|
|
|
+ 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,
|
|
|
+ "rowauth": item.rowauth
|
|
|
+ }
|
|
|
+ newData.push(obj)
|
|
|
}
|
|
|
- newData.push(obj)
|
|
|
})
|
|
|
return newData
|
|
|
},
|
|
@@ -512,7 +524,7 @@ export default {
|
|
|
},
|
|
|
async handleColSave () {
|
|
|
const result = this.sendCheckData(this.multipleTable)
|
|
|
- const dis = this.sendCheckData(this.checkGroups)
|
|
|
+ const dis = this.sendCheckData(this.checkGroups, true)
|
|
|
if (dis && dis.length) {
|
|
|
await this.getChangeList(SERVICE_ID.authTreeId, dis, 3)
|
|
|
}
|