mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
修复功能菜单“系统管理”-“部门管理”,用户列表中,编辑用户界面-用户账号为空 #9032
This commit is contained in:
@ -21,6 +21,13 @@ public class SysUserSysDepPostModel {
|
|||||||
* 用户ID
|
* 用户ID
|
||||||
*/
|
*/
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 登录账号
|
||||||
|
*/
|
||||||
|
@Excel(name = "登录账号", width = 15)
|
||||||
|
private String username;
|
||||||
|
|
||||||
/* 真实姓名 */
|
/* 真实姓名 */
|
||||||
private String realname;
|
private String realname;
|
||||||
|
|
||||||
|
|||||||
@ -172,6 +172,11 @@ export const orgCategoryOptions = {
|
|||||||
* 用户列表
|
* 用户列表
|
||||||
*/
|
*/
|
||||||
export const userColumns: BasicColumn[] = [
|
export const userColumns: BasicColumn[] = [
|
||||||
|
{
|
||||||
|
title: '用户账号',
|
||||||
|
dataIndex: 'username',
|
||||||
|
width: 120,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '姓名',
|
title: '姓名',
|
||||||
dataIndex: 'realname',
|
dataIndex: 'realname',
|
||||||
@ -208,4 +213,4 @@ export function positionChange(value, model, treeData) {
|
|||||||
} else {
|
} else {
|
||||||
treeData.value = [];
|
treeData.value = [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user