|
@@ -99,7 +99,7 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="roleList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="角色编号" prop="roleId" width="120" />
|
|
|
+ <el-table-column label="角色编号" prop="id" width="120" />
|
|
|
<el-table-column label="角色名称" prop="roleName" :show-overflow-tooltip="true" width="150" />
|
|
|
<el-table-column label="权限字符" prop="roleKey" :show-overflow-tooltip="true" width="150" />
|
|
|
<el-table-column label="显示顺序" prop="roleSort" width="100" />
|
|
@@ -119,7 +119,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
- <template slot-scope="scope" v-if="scope.row.roleId !== 1">
|
|
|
+ <template slot-scope="scope" v-if="scope.row.id !== 1">
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
@@ -134,7 +134,7 @@
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['system:role:remove']"
|
|
|
>删除</el-button>
|
|
|
- <el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)" v-hasPermi="['system:role:edit']">
|
|
|
+ <!-- <el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)" v-hasPermi="['system:role:edit']">
|
|
|
<el-button size="mini" type="text" icon="el-icon-d-arrow-right">更多</el-button>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<el-dropdown-item command="handleDataScope" icon="el-icon-circle-check"
|
|
@@ -142,7 +142,7 @@
|
|
|
<el-dropdown-item command="handleAuthUser" icon="el-icon-user"
|
|
|
v-hasPermi="['system:role:edit']">分配用户</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
- </el-dropdown>
|
|
|
+ </el-dropdown> -->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -450,7 +450,7 @@ export default {
|
|
|
},
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
- this.ids = selection.map(item => item.roleId)
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
this.single = selection.length!=1
|
|
|
this.multiple = !selection.length
|
|
|
},
|
|
@@ -507,7 +507,7 @@ export default {
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|
|
|
- const roleId = row.roleId || this.ids
|
|
|
+ const roleId = row.id || this.ids
|
|
|
const roleMenu = this.getRoleMenuTreeselect(roleId);
|
|
|
getRole(roleId).then(response => {
|
|
|
this.form = response.data;
|
|
@@ -534,8 +534,8 @@ export default {
|
|
|
/** 分配数据权限操作 */
|
|
|
handleDataScope(row) {
|
|
|
this.reset();
|
|
|
- const deptTreeSelect = this.getDeptTree(row.roleId);
|
|
|
- getRole(row.roleId).then(response => {
|
|
|
+ const deptTreeSelect = this.getDeptTree(row.id);
|
|
|
+ getRole(row.id).then(response => {
|
|
|
this.form = response.data;
|
|
|
this.openDataScope = true;
|
|
|
this.$nextTick(() => {
|
|
@@ -548,14 +548,14 @@ export default {
|
|
|
},
|
|
|
/** 分配用户操作 */
|
|
|
handleAuthUser: function(row) {
|
|
|
- const roleId = row.roleId;
|
|
|
+ const roleId = row.id;
|
|
|
this.$router.push("/system/role-auth/user/" + roleId);
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm: function() {
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
if (valid) {
|
|
|
- if (this.form.roleId != undefined) {
|
|
|
+ if (this.form.id != undefined) {
|
|
|
this.form.menuIds = this.getMenuAllCheckedKeys();
|
|
|
updateRole(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
@@ -575,7 +575,7 @@ export default {
|
|
|
},
|
|
|
/** 提交按钮(数据权限) */
|
|
|
submitDataScope: function() {
|
|
|
- if (this.form.roleId != undefined) {
|
|
|
+ if (this.form.id != undefined) {
|
|
|
this.form.deptIds = this.getDeptAllCheckedKeys();
|
|
|
dataScope(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
@@ -586,7 +586,7 @@ export default {
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
- const roleIds = row.roleId || this.ids;
|
|
|
+ const roleIds = row.id || this.ids;
|
|
|
this.$modal.confirm('是否确认删除角色编号为"' + roleIds + '"的数据项?').then(function() {
|
|
|
return delRole(roleIds);
|
|
|
}).then(() => {
|
|
@@ -602,4 +602,4 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
-</script>
|
|
|
+</script>
|