Commit c4ecc3803f4f607701873db5f8d3ca19d74ce72b

Authored by sqy
1 parent fa055df9

fix:显示密码按钮变大

... ... @@ -16,15 +16,13 @@
16 16 <view class="loginPhone">
17 17 <view class="form-row u-flex">
18 18 <view class="v-input"><input type="text" v-model="loginForm.username" maxlength="32" placeholder="请输入登录账号" /></view>
19   -
20 19 <u-icon></u-icon>
21 20 </view>
22 21
23 22 <view class="form-row u-flex">
24 23 <view class="v-input"><input type="text" v-model="loginForm.password" maxlength="32" placeholder="请输入登录密码" :password="!showPassword" /></view>
25   -
26   - <view class="v-password" @click="showPasswordMode">
27   - <u-icon color="#9a9a9a" width="18" height="15" :name="showPassword ? '/static/eye.png' : '/static/eye-hide.png'"></u-icon>
  24 + <view class="v-password" style="padding: 30rpx;" @click="showPasswordMode">
  25 + <u-icon color="#9a9a9a" :name="showPassword ? '/static/eye.png' : '/static/eye-hide.png'"></u-icon>
28 26 </view>
29 27
30 28 <u-icon></u-icon>
... ...