|
@@ -1,10 +1,9 @@
|
|
|
<template>
|
|
|
<div class="center">
|
|
|
<div class="item account">
|
|
|
- <span
|
|
|
- style="color: #bbb; font-size: 21px;"
|
|
|
- class="icon iconfont icon-wode"
|
|
|
- ></span>
|
|
|
+ <span class="icon">
|
|
|
+ <img src="/login/User.png" alt="">
|
|
|
+ </span>
|
|
|
<input
|
|
|
type="text"
|
|
|
v-model="memberMobile"
|
|
@@ -30,7 +29,7 @@
|
|
|
<!-- 邮箱验证码 -->
|
|
|
<div class="verify-code">
|
|
|
<span class="verify-code-icon">
|
|
|
- <img src="/register/mail_success.png" alt="" />
|
|
|
+ <img src="/login/Code.png" alt="">
|
|
|
</span>
|
|
|
<input
|
|
|
type="text"
|
|
@@ -59,10 +58,9 @@
|
|
|
{{ mobileCodeErrorMsg }}
|
|
|
</div>
|
|
|
<div class="item password">
|
|
|
- <span
|
|
|
- style="color: #bbb; font-size: 21px;"
|
|
|
- class="icon iconfont icon-mima1"
|
|
|
- ></span>
|
|
|
+ <span class="icon">
|
|
|
+ <img src="/login/Password.png" alt="">
|
|
|
+ </span>
|
|
|
<input
|
|
|
:type="showPwdFlag ? 'text' : 'password'"
|
|
|
v-model="password"
|
|
@@ -95,9 +93,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="item confirm">
|
|
|
- <span style="color: #bbb; font-size: 21px;" class="icon"
|
|
|
- ><img src="/register/pwd_confirm.png" alt=""
|
|
|
- /></span>
|
|
|
+ <span class="icon">
|
|
|
+ <img src="/login/Password.png" alt="">
|
|
|
+ </span>
|
|
|
<input
|
|
|
class="input"
|
|
|
v-model="confirmPassword"
|
|
@@ -372,19 +370,19 @@ watch(mobileCode, (val) => {
|
|
|
|
|
|
.icon {
|
|
|
display: flex;
|
|
|
- justify-content: center;
|
|
|
align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
position: absolute;
|
|
|
left: 1px;
|
|
|
top: 1px;
|
|
|
width: 50px;
|
|
|
- // text-align: center;
|
|
|
- // line-height: 46px;
|
|
|
height: 46px;
|
|
|
- background: #f8f8f8;
|
|
|
|
|
|
img {
|
|
|
- width: 20px;
|
|
|
+ width: 22px;
|
|
|
+ height: 22px;
|
|
|
+ position: relative;
|
|
|
+ right: 5px;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -429,16 +427,19 @@ watch(mobileCode, (val) => {
|
|
|
margin-top: 10px;
|
|
|
|
|
|
&-icon {
|
|
|
- width: 50px;
|
|
|
display: flex;
|
|
|
- justify-content: center;
|
|
|
align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+ width: 50px;
|
|
|
+ height: 48px;
|
|
|
border: 1px solid #e8e8e8;
|
|
|
border-right: none;
|
|
|
- background: #f8f8f8;
|
|
|
|
|
|
img {
|
|
|
- width: 20px;
|
|
|
+ width: 22px;
|
|
|
+ height: 22px;
|
|
|
+ position: relative;
|
|
|
+ right: 5px;
|
|
|
}
|
|
|
}
|
|
|
|