|
@@ -209,8 +209,8 @@ const openDialog = async (type: number, title: string, row?: any) => {
|
|
}
|
|
}
|
|
// 表格配置项
|
|
// 表格配置项
|
|
const columns = reactive<ColumnProps<User.ResUserList>[]>([
|
|
const columns = reactive<ColumnProps<User.ResUserList>[]>([
|
|
- { type: 'selection', fixed: 'left', width: 70 },
|
|
|
|
- { prop: 'userId', label: '用户编号' },
|
|
|
|
|
|
+ { type: 'selection', fixed: 'left', width: 60 },
|
|
|
|
+ { prop: 'userId', label: '用户编号', width: 100 },
|
|
{ prop: 'userName', label: '用户名称', search: { el: 'input' }, width: 120 },
|
|
{ prop: 'userName', label: '用户名称', search: { el: 'input' }, width: 120 },
|
|
{ prop: 'nickName', label: '用户昵称', search: { el: 'input' }, width: 120 },
|
|
{ prop: 'nickName', label: '用户昵称', search: { el: 'input' }, width: 120 },
|
|
{ prop: 'dept.deptName', label: '部门', width: 120 },
|
|
{ prop: 'dept.deptName', label: '部门', width: 120 },
|