代码提交

This commit is contained in:
黄少君
2023-11-14 17:21:03 +08:00
parent d0b337c596
commit dcab74274f
567 changed files with 22414 additions and 7375 deletions

View File

@ -0,0 +1,48 @@
export const userInfoList = [
{
label: 'ID',
field: 'id',
type: 'text',
icon: false
},
{
label: '昵称',
field: 'nickname',
type: 'input',
icon: true
},
{
label: '性别',
field: 'sex',
type: 'text',
icon: true,
map: {
0: '女',
1: '男'
},
func: 'openSex'
}
,
{
label: '出生日期',
field: 'birthday',
type: 'text',
icon: true,
func: 'openBirthday'
}
]
export const userInfoNextList = [
{
label: '手机号',
field: 'mobile',
type: 'text',
icon: false
}
]
export const sexColumns = [
[{label: '男', value: 1}, {label: '女', value: 0}]
]