Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello_uni-id-pages
提交
0178f4f4
H
hello_uni-id-pages
项目概览
DCloud
/
hello_uni-id-pages
通知
1054
Star
31
Fork
43
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
2
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello_uni-id-pages
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
0178f4f4
编写于
8月 23, 2022
作者:
JiaRongPing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 个人中心相关页面调整
上级
1b09d07f
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
79 addition
and
20 deletion
+79
-20
uni_modules/uni-id-pages/pages/userinfo/bind-mobile/bind-mobile.vue
...s/uni-id-pages/pages/userinfo/bind-mobile/bind-mobile.vue
+16
-1
uni_modules/uni-id-pages/pages/userinfo/change_pwd/change_pwd.vue
...les/uni-id-pages/pages/userinfo/change_pwd/change_pwd.vue
+19
-3
uni_modules/uni-id-pages/pages/userinfo/deactivate/deactivate.vue
...les/uni-id-pages/pages/userinfo/deactivate/deactivate.vue
+29
-14
uni_modules/uni-id-pages/pages/userinfo/userinfo.vue
uni_modules/uni-id-pages/pages/userinfo/userinfo.vue
+11
-1
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/login/login.js
...s/uniCloud/cloudfunctions/uni-id-co/module/login/login.js
+4
-1
未找到文件。
uni_modules/uni-id-pages/pages/userinfo/bind-mobile/bind-mobile.vue
浏览文件 @
0178f4f4
<!-- 绑定手机号码页 -->
<
template
>
<view
class=
"uni-content"
>
<match-media
:min-width=
"690"
>
<view
class=
"login-logo"
>
<image
:src=
"logo"
></image>
</view>
<!-- 顶部文字 -->
<text
class=
"title title-box"
>
绑定手机号
</text>
</match-media>
<!-- 登录框 (选择手机号所属国家和地区需要另行实现) -->
<uni-easyinput
clearable
:focus=
"focusMobile"
@
blur=
"focusMobile = false"
type=
"number"
class=
"input-box"
:inputBorder=
"false"
v-model=
"formData.mobile"
maxlength=
"11"
placeholder=
"请输入手机号"
></uni-easyinput>
...
...
@@ -20,7 +27,8 @@
code
:
""
,
captcha
:
""
},
focusMobile
:
true
focusMobile
:
true
,
logo
:
"
/static/logo.png
"
}
},
computed
:
{
...
...
@@ -90,6 +98,13 @@
padding
:
50rpx
;
padding-top
:
10px
;
}
@media
screen
and
(
min-width
:
690px
)
{
.uni-content
{
padding
:
30px
40px
40px
;
}
}
/* #ifndef APP-NVUE || VUE3 */
.
uni-content
:
:
v-deep
.
uni-easyinput__content
{}
...
...
uni_modules/uni-id-pages/pages/userinfo/change_pwd/change_pwd.vue
浏览文件 @
0178f4f4
<!-- 修改密码 -->
<
template
>
<view
class=
"uni-content"
>
<match-media
:min-width=
"690"
>
<view
class=
"login-logo"
>
<image
:src=
"logo"
></image>
</view>
<!-- 顶部文字 -->
<text
class=
"title title-box"
>
修改密码
</text>
</match-media>
<uni-forms
ref=
"form"
:value=
"formData"
err-show-type=
"toast"
>
<uni-forms-item
name=
"oldPassword"
>
<uni-easyinput
:focus=
"focusOldPassword"
@
blur=
"focusOldPassword = false"
class=
"input-box"
...
...
@@ -81,7 +88,8 @@
}
]
}
}
},
logo
:
"
/static/logo.png
"
}
},
onReady
()
{
...
...
@@ -140,7 +148,15 @@
<
style
lang=
"scss"
>
@import
"@/uni_modules/uni-id-pages/common/login-page.scss"
;
.uni-content
{
margin-top
:
15px
;
@media
screen
and
(
max-width
:
690px
)
{
.uni-content
{
margin-top
:
15px
;
}
}
@media
screen
and
(
min-width
:
690px
)
{
.uni-content
{
padding
:
30px
40px
40px
;
}
}
</
style
>
uni_modules/uni-id-pages/pages/userinfo/deactivate/deactivate.vue
浏览文件 @
0178f4f4
...
...
@@ -77,20 +77,6 @@
margin-bottom
:
80px
;
}
.button-group
{
display
:
flex
;
flex-direction
:
row
;
position
:
fixed
;
height
:
50px
;
bottom
:
10px
;
width
:
750
rpx
;
justify-content
:
center
;
align-items
:
center
;
border-top
:
solid
1px
#e4e6ec
;
padding-top
:
10px
;
background-color
:
#FFFFFF
;
}
.button-group
button
{
border-radius
:
100px
;
border
:
none
;
...
...
@@ -108,4 +94,33 @@
color
:
#e64340
;
border
:
solid
1px
#e64340
;
}
@media
screen
and
(
max-width
:
690px
)
{
.button-group
{
display
:
flex
;
flex-direction
:
row
;
position
:
fixed
;
height
:
50px
;
bottom
:
10px
;
width
:
750
rpx
;
justify-content
:
center
;
align-items
:
center
;
border-top
:
solid
1px
#e4e6ec
;
padding-top
:
10px
;
background-color
:
#FFFFFF
;
}
}
@media
screen
and
(
min-width
:
690px
)
{
.button-group
{
display
:
flex
;
flex-direction
:
row
;
height
:
50px
;
max-width
:
1500
rpx
;
justify-content
:
center
;
align-items
:
center
;
padding-top
:
10px
;
background-color
:
#FFFFFF
;
}
}
</
style
>
uni_modules/uni-id-pages/pages/userinfo/userinfo.vue
浏览文件 @
0178f4f4
...
...
@@ -206,7 +206,17 @@
box-sizing
:
border-box
;
flex-direction
:
column
;
}
@media
screen
and
(
min-width
:
690px
)
{
.uni-content
{
padding
:
0
;
max-width
:
690px
;
margin-left
:
calc
(
50%
-
200px
);
border
:
none
;
max-height
:
none
;
border-radius
:
0
;
box-shadow
:
none
;
}
}
/* #endif */
.avatar
{
align-items
:
center
;
...
...
uni_modules/uni-id-pages/uniCloud/cloudfunctions/uni-id-co/module/login/login.js
浏览文件 @
0178f4f4
...
...
@@ -38,7 +38,10 @@ module.exports = async function (params = {}) {
required
:
false
,
type
:
'
email
'
},
password
:
'
password
'
,
password
:
{
required
:
true
,
type
:
'
string
'
},
captcha
:
{
required
:
false
,
type
:
'
string
'
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录