mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-10 11:09:44 +08:00
update: uni-id-user,支持新组件uni-data-checklist
This commit is contained in:
parent
74efae3208
commit
cccafe8fa6
@ -26,23 +26,35 @@
|
|||||||
"title": "性别",
|
"title": "性别",
|
||||||
"description": "用户性别:0 未知 1 男性 2 女性",
|
"description": "用户性别:0 未知 1 男性 2 女性",
|
||||||
"defaultValue": 0,
|
"defaultValue": 0,
|
||||||
"component": {
|
"enum": [{
|
||||||
"name": "radio-group",
|
"text": "未知",
|
||||||
"childrenData": [{
|
"value": 0
|
||||||
"label": "未知",
|
}, {
|
||||||
"value": 0
|
"text": "男",
|
||||||
}, {
|
"value": 1
|
||||||
"label": "男",
|
}, {
|
||||||
"value": 1
|
"text": "女",
|
||||||
}, {
|
"value": 2
|
||||||
"label": "女",
|
}]
|
||||||
"value": 2
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"bsonType": "int",
|
"bsonType": "int",
|
||||||
"description": "用户状态:0 正常 1 禁用 2 审核中 3 审核拒绝"
|
"description": "用户状态:0 正常 1 禁用 2 审核中 3 审核拒绝",
|
||||||
|
"title": "用户状态",
|
||||||
|
"defaultValue": 0,
|
||||||
|
"enum": [{
|
||||||
|
"text": "正常",
|
||||||
|
"value": 0
|
||||||
|
}, {
|
||||||
|
"text": "禁用",
|
||||||
|
"value": 1
|
||||||
|
}, {
|
||||||
|
"text": "审核中",
|
||||||
|
"value": 2
|
||||||
|
}, {
|
||||||
|
"text": "审核拒绝",
|
||||||
|
"value": 3
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
"mobile": {
|
"mobile": {
|
||||||
"bsonType": "string",
|
"bsonType": "string",
|
||||||
@ -52,9 +64,16 @@
|
|||||||
},
|
},
|
||||||
"mobile_confirmed": {
|
"mobile_confirmed": {
|
||||||
"bsonType": "int",
|
"bsonType": "int",
|
||||||
"minimum": 0,
|
"description": "手机号验证状态:0 未验证 1 已验证",
|
||||||
"maximum": 1,
|
"title": "手机号验证状态",
|
||||||
"description": "手机号验证状态:0 未验证 1 已验证"
|
"defaultValue": 0,
|
||||||
|
"enum": [{
|
||||||
|
"text": "未验证",
|
||||||
|
"value": 0
|
||||||
|
}, {
|
||||||
|
"text": "已验证",
|
||||||
|
"value": 1
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
"email": {
|
"email": {
|
||||||
"bsonType": "string",
|
"bsonType": "string",
|
||||||
@ -64,9 +83,16 @@
|
|||||||
},
|
},
|
||||||
"email_confirmed": {
|
"email_confirmed": {
|
||||||
"bsonType": "int",
|
"bsonType": "int",
|
||||||
"minimum": 0,
|
"description": "邮箱验证状态:0 未验证 1 已验证",
|
||||||
"maximum": 1,
|
"title": "邮箱验证状态",
|
||||||
"description": "邮箱验证状态:0 未验证 1 已验证"
|
"defaultValue": 0,
|
||||||
|
"enum": [{
|
||||||
|
"text": "未验证",
|
||||||
|
"value": 0
|
||||||
|
}, {
|
||||||
|
"text": "已验证",
|
||||||
|
"value": 1
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
"avatar": {
|
"avatar": {
|
||||||
"bsonType": "string",
|
"bsonType": "string",
|
||||||
@ -76,7 +102,10 @@
|
|||||||
"role": {
|
"role": {
|
||||||
"bsonType": "array",
|
"bsonType": "array",
|
||||||
"title": "角色",
|
"title": "角色",
|
||||||
"description": "用户角色"
|
"description": "用户角色",
|
||||||
|
"permission": {
|
||||||
|
"write": false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"wx_unionid": {
|
"wx_unionid": {
|
||||||
"bsonType": "string",
|
"bsonType": "string",
|
||||||
|
Loading…
Reference in New Issue
Block a user