Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
xuqi
10 years ago
Commit
9801db6dc420f49510937bda14f97405786b21a6
1 parent
32d5bc05
add passport data-structure md
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
89 additions
and
0 deletions
docs/data-structure.md
docs/data-structure.md
View file @
9801db6
...
...
@@ -510,4 +510,93 @@
...
]
}
}
## 登录、注册、找回密码
### 通用头部(包含在每个页面中)
{
showGoBack: true/false, //是否显示GO-BACK链接
backUrl: '',
showHeaderImg: true/false, //显示头部图片
showHeaderText: true/false, //显示头部文字
headerText: ''
}
### 区域列表
[
{
areaCode: '+86', //区号
selected: true/false,
name: '中国'
},
...
]
### 登录
//登录页
{
account: '', //默认填入的用户名
registerUrl: '', //免费注册地址
aliLoginUrl: '',
weiboLoginUrl: '',
qqLoginUrl: '',
interationalUrl: '',
phoneRetriveUrl: '',
emailRetriveUrl: ''
}
//国际账号登录页
{
countrys: [...], //区域列表
countryCode: '',
phoneNum: ''
}
### 注册
//注册页
{
countrys: [...], //区域列表
countryCode: '' //默认区号
}
//验证码
{
areaCode: '',
phoneNum: ''
}
//密码页
{
... //仅头部
}
### 找回密码
//邮箱找回&重置密码
{
... //仅头部
}
//邮箱找回成功
{
goEmail: '',
resendUrl: ''
}
//手机找回
{
countrys: [...],
countryCode: ''
}
//手机找回验证码
{
areaCode: '',
phoneNum: ''
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment