12345678910111213141516171819202122232425262728293031323334 |
- <!--pages/alterShopPassword/alterShopPassword.wxml-->
- <view class="set-accout">
- <!-- 输入旧密码 -->
- <view class="set-accout-item">
- <text class="item-tit" decode="{{true}}">旧 密 码:</text>
- <input type="password" bindinput="bindOldPasswordInt" class="item-input" placeholder="请输入旧登录密码"></input>
- </view>
-
- <!-- 输入密码 -->
- <view class="set-accout-item">
- <text class="item-tit" decode="{{true}}">新 密 码:</text>
- <input type="password" bindinput="bindNewPasswordInt" class="item-input" placeholder="请设置6-12位新登录密码"></input>
- </view>
- <!-- 确认密码 -->
- <view class="set-accout-item">
- <text class="item-tit" decode="{{true}}">确 认 密 码:</text>
- <input type="password" bindinput="bindConfirmPasswordInt" class="item-input" placeholder="请再次输入新登录密码"></input>
- </view>
- <!-- 确认 -->
- <view class="confirm">
- <view class="confirm-btn" bindtap="updateShopPassword">确认</view>
- </view>
- <!-- tips -->
- <view class="tips-main">
- <view class="tips">提示:请用上面的重新设置的密码在PC端打开店铺管理中心进行登录。商家管理端地址 http://b2b2c-multishop.gz-yami.com</view>
- </view>
-
- </view>
|