功能变化: 优化个人中心修改密码后强制退出登录状态
This commit is contained in:
@@ -220,7 +220,10 @@ export const createCrudOptions = function ({ crudExpose, context }: CreateCrudOp
|
||||
label: 'name',
|
||||
}),
|
||||
column: {
|
||||
minWidth: 150, //最小列宽
|
||||
minWidth: 200, //最小列宽
|
||||
formatter({value,row,index}){
|
||||
return row.dept_name_all
|
||||
}
|
||||
},
|
||||
form: {
|
||||
rules: [
|
||||
@@ -259,7 +262,11 @@ export const createCrudOptions = function ({ crudExpose, context }: CreateCrudOp
|
||||
label: 'name',
|
||||
}),
|
||||
column: {
|
||||
minWidth: 100, //最小列宽
|
||||
minWidth: 200, //最小列宽
|
||||
formatter({value,row,index}){
|
||||
const values = row.role_info.map((item:any) => item.name);
|
||||
return values.join(',')
|
||||
}
|
||||
},
|
||||
form: {
|
||||
rules: [
|
||||
@@ -382,6 +389,10 @@ export const createCrudOptions = function ({ crudExpose, context }: CreateCrudOp
|
||||
form: {
|
||||
show: false,
|
||||
},
|
||||
column:{
|
||||
width:150,
|
||||
showOverflowTooltip: true,
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user