Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
梦想橡皮擦
uni-starter
提交
af23fac3
U
uni-starter
项目概览
梦想橡皮擦
/
uni-starter
与 Fork 源项目一致
Fork自
DCloud / uni-starter
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-starter
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
af23fac3
编写于
5月 07, 2021
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增banner初始化数据
上级
ade564ef
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
51 addition
and
12 deletion
+51
-12
pages/ucenter/login-page/pwd-retrieve/pwd-retrieve.vue
pages/ucenter/login-page/pwd-retrieve/pwd-retrieve.vue
+4
-8
uniCloud-aliyun/database/db_init.json
uniCloud-aliyun/database/db_init.json
+47
-4
未找到文件。
pages/ucenter/login-page/pwd-retrieve/pwd-retrieve.vue
浏览文件 @
af23fac3
<
template
>
<
template
>
<view
class=
"content"
>
<view
class=
"content"
>
<!-- 顶部文字 -->
<!-- 顶部文字 -->
<text
v-show=
"isPhone"
class=
"login-iknow"
>
{{
tipText
}}
</text>
<!-- 登录框 (选择手机号所属国家和地区需要另行实现) -->
<!-- 登录框 (选择手机号所属国家和地区需要另行实现) -->
<uni-forms
ref=
"form"
:value=
"formData"
:rules=
"rules"
>
<uni-forms
ref=
"form"
:value=
"formData"
:rules=
"rules"
>
<uni-forms-item
name=
"phone"
>
<uni-forms-item
name=
"phone"
>
<!-- focus规则如果上一页携带来“手机号码”数据就focus验证码输入框,否则focus手机号码输入框 -->
<!-- focus规则如果上一页携带来“手机号码”数据就focus验证码输入框,否则focus手机号码输入框 -->
<uni-easyinput
:focus=
"
!formData.phone.length
"
type=
"number"
class=
"easyinput"
:inputBorder=
"false"
<uni-easyinput
:focus=
"
formData.phone.length!=11
"
type=
"number"
class=
"easyinput"
:inputBorder=
"false"
v-model=
"formData.phone"
maxlength=
"11"
placeholder=
"请输入手机号"
></uni-easyinput>
v-model=
"formData.phone"
maxlength=
"11"
placeholder=
"请输入手机号"
></uni-easyinput>
</uni-forms-item>
</uni-forms-item>
<uni-forms-item
name=
"code"
>
<uni-forms-item
name=
"code"
>
<uni-easyinput
:focus=
"formData.phone.length
!=0
"
type=
"number"
class=
"easyinput"
:inputBorder=
"false"
<uni-easyinput
:focus=
"formData.phone.length
==11
"
type=
"number"
class=
"easyinput"
:inputBorder=
"false"
v-model=
"formData.code"
maxlength=
"6"
placeholder=
"请输入验证码"
>
v-model=
"formData.code"
maxlength=
"6"
placeholder=
"请输入验证码"
>
<template
slot=
"right"
>
<template
slot=
"right"
>
<uni-send-sms-code
ref=
"shortCode"
:phone=
"formData.phone"
></uni-send-sms-code>
<uni-send-sms-code
ref=
"shortCode"
:phone=
"formData.phone"
></uni-send-sms-code>
...
@@ -96,13 +95,10 @@
...
@@ -96,13 +95,10 @@
}
}
]
]
}
}
}
}
}
}
},
},
computed
:
{
computed
:
{
tipText
()
{
return
`验证码已通过短信发送至
${
this
.
formData
.
phone
}
。密码为6 - 20位`
},
canSubmit
()
{
canSubmit
()
{
return
this
.
isPhone
&&
this
.
isPwd
&&
this
.
isCode
;
return
this
.
isPhone
&&
this
.
isPwd
&&
this
.
isCode
;
},
},
...
@@ -124,7 +120,7 @@
...
@@ -124,7 +120,7 @@
},
},
onLoad
(
event
)
{
onLoad
(
event
)
{
if
(
event
&&
event
.
phoneNumber
)
{
if
(
event
&&
event
.
phoneNumber
)
{
this
.
formData
.
phone
=
event
.
phoneNumber
;
this
.
formData
.
phone
=
event
.
phoneNumber
;
}
}
},
},
onReady
()
{
onReady
()
{
...
...
uniCloud-aliyun/database/db_init.json
浏览文件 @
af23fac3
...
@@ -36,14 +36,57 @@
...
@@ -36,14 +36,57 @@
"create_date"
:
1616771628150
"create_date"
:
1616771628150
}]
}]
},
},
"uni-id-users"
:{
"uni-id-users"
:
{
"data"
:[{
"data"
:
[{
"_id"
:
"123"
,
"_id"
:
"123"
,
"username"
:
"预置用户"
,
"username"
:
"预置用户"
,
"nickname"
:
"测试"
,
"nickname"
:
"测试"
,
"avatar"
:
"https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-dc-site/d84c6de0-6080-11eb-bdc1-8bd33eb6adaa.png"
,
"avatar"
:
"https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-dc-site/d84c6de0-6080-11eb-bdc1-8bd33eb6adaa.png"
,
"mobile"
:
"18888888888"
,
"mobile"
:
"18888888888"
,
"mobile_confirmed"
:
1
"mobile_confirmed"
:
1
}]
}]
},
"opendb-banner"
:
{
"data"
:
[{
"status"
:
true
,
"bannerfile"
:
{
"name"
:
"094a9dc0-50c0-11eb-b680-7980c8a877b8.jpg"
,
"extname"
:
"jpg"
,
"fileType"
:
"image"
,
"url"
:
"https://vkceyugu.cdn.bspapp.com/VKCEYUGU-76ce2c5e-31c7-4d81-8fcf-ed1541ecbc6e/b88a7e17-35f0-4d0d-bc32-93f8909baf03.jpg"
,
"size"
:
70880
,
"image"
:
{
"width"
:
500
,
"height"
:
333
,
"location"
:
"blob:http://localhost:8081/a3bfaab4-7ee6-44d5-a171-dc8225d83598"
},
"path"
:
"https://vkceyugu.cdn.bspapp.com/VKCEYUGU-76ce2c5e-31c7-4d81-8fcf-ed1541ecbc6e/b88a7e17-35f0-4d0d-bc32-93f8909baf03.jpg"
},
"open_url"
:
"https://www.dcloud.io/"
,
"title"
:
"测试"
,
"sort"
:
1
,
"category_id"
:
""
,
"description"
:
""
},
{
"status"
:
true
,
"bannerfile"
:
{
"name"
:
"094a9dc0-50c0-11eb-b680-7980c8a877b8.jpg"
,
"extname"
:
"jpg"
,
"fileType"
:
"image"
,
"url"
:
"https://vkceyugu.cdn.bspapp.com/VKCEYUGU-76ce2c5e-31c7-4d81-8fcf-ed1541ecbc6e/9db94cb4-a5e0-4ed9-b356-b42a392b3112.jpg"
,
"size"
:
70880
,
"image"
:
{
"width"
:
500
,
"height"
:
333
,
"location"
:
"blob:http://localhost:8081/1a6f718a-4012-476a-9172-590fef2cc518"
},
"path"
:
"https://vkceyugu.cdn.bspapp.com/VKCEYUGU-76ce2c5e-31c7-4d81-8fcf-ed1541ecbc6e/9db94cb4-a5e0-4ed9-b356-b42a392b3112.jpg"
},
"open_url"
:
"https://www.dcloud.io/"
,
"title"
:
""
,
"category_id"
:
""
,
"description"
:
""
}]
}
}
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录