|
|
@ -136,7 +136,11 @@ |
|
|
|
<el-table-column type="selection" width="55" align="center"></el-table-column> |
|
|
|
<el-table-column type="selection" width="55" align="center"></el-table-column> |
|
|
|
<el-table-column type="index" width="100" label="序号" align="center"></el-table-column> |
|
|
|
<el-table-column type="index" width="100" label="序号" align="center"></el-table-column> |
|
|
|
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> |
|
|
|
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> |
|
|
|
<el-table-column prop="applicationName" label="系统名称" align="center"></el-table-column> |
|
|
|
<el-table-column prop="applicationName" label="系统名称" align="center"> |
|
|
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
|
|
{{ permissionData.find(e => e.systemId == scope.row.systemId).systemName }} |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="排序" align="center" width="100"> |
|
|
|
<el-table-column label="排序" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input v-model.trim="scope.row.sort" |
|
|
|
<el-input v-model.trim="scope.row.sort" |
|
|
@ -182,7 +186,11 @@ |
|
|
|
<el-table-column type="selection" width="55" align="center"></el-table-column> |
|
|
|
<el-table-column type="selection" width="55" align="center"></el-table-column> |
|
|
|
<el-table-column type="index" width="100" label="序号" align="center"></el-table-column> |
|
|
|
<el-table-column type="index" width="100" label="序号" align="center"></el-table-column> |
|
|
|
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> |
|
|
|
<el-table-column prop="projectName" label="项目名称" align="center"></el-table-column> |
|
|
|
<el-table-column prop="applicationName" label="系统名称" align="center"></el-table-column> |
|
|
|
<el-table-column prop="applicationName" label="系统名称" align="center"> |
|
|
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
|
|
{{ permissionData.find(e => e.systemId == scope.row.systemId).systemName }} |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="排序" align="center" width="100"> |
|
|
|
<el-table-column label="排序" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input v-model.trim="scope.row.sort" |
|
|
|
<el-input v-model.trim="scope.row.sort" |
|
|
@ -509,9 +517,12 @@ export default { |
|
|
|
this.getConfig(); |
|
|
|
this.getConfig(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleConfirm() { // 确认系统 |
|
|
|
handleConfirm() { // 确认系统 |
|
|
|
if (!this.multipleSelection.length) { |
|
|
|
const list = this.multipleSelection |
|
|
|
|
|
|
|
if (!list.length) { |
|
|
|
this.$message.warning("请选择系统!"); |
|
|
|
this.$message.warning("请选择系统!"); |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
} else if (list.find(e => !e.type) && list.find(e => e.type === 1)) { |
|
|
|
|
|
|
|
return this.$message.warning('请勿同时选择编程类和流程类的系统!') |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
this.getConfigData(); |
|
|
|
this.getConfigData(); |
|
|
|
this.configVisible = false; |
|
|
|
this.configVisible = false; |
|
|
|