accountSettings.wxml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!-- 账号设置 -->
  2. <!--pages/accountSettings/accountSettings.wxml-->
  3. <view class="set-accout">
  4. <!-- 用户名 -->
  5. <view class="set-accout-item">
  6. <text class="item-tit" decode="{{true}}">登录账号:</text>
  7. <input type="text" bindinput="bindMobileInt" class="item-input" maxlength="11" placeholder="请输入手机号"></input>
  8. <!-- 微信获取手机号码 -->
  9. <!-- <view class="userphone clearfix">
  10. <view class="show-num" wx:if="phoneNumber != ''">{{phoneNumber}}</view>
  11. <button class="get-userphone-btn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">点击获取手机号</button>
  12. </view> -->
  13. </view>
  14. <!-- 验证码 -->
  15. <view class="set-accout-item validcode">
  16. <text class="item-tit" decode="true">验&ensp;证&ensp;码:</text>
  17. <input
  18. class="item-input valid-input"
  19. type="text"
  20. bindinput="bindValidCodeInt"
  21. placeholder="请输入验证码"/>
  22. <text class="send-code {{count >= 1 || !count ? 'defaulut-btn' : ''}}" wx-if="{{show}}" bindtap="getValidCode">获取验证码</text>
  23. <text wx-if="{{!show}}" class="send-code" style="cursor: not-allowed;">{{count}} s</text>
  24. </view>
  25. <!-- 密码 -->
  26. <view class="set-accout-item">
  27. <text class="item-tit" decode="{{true}}">设置密码:</text>
  28. <input type="password" bindinput="bindPasswordInt" class="item-input" placeholder="请设置6-12位登录密码"></input>
  29. </view>
  30. <!-- 确认密码 -->
  31. <view class="set-accout-item">
  32. <text class="item-tit" decode="{{true}}">确认密码:</text>
  33. <input type="password" bindinput="bindConfirmPasswordInt" class="item-input" placeholder="请再次输入密码"></input>
  34. </view>
  35. <!-- 确认 -->
  36. <view class="confirm">
  37. <view class="confirm-btn" bindtap="accountSettingsSubmit">确认</view>
  38. </view>
  39. <!-- tips -->
  40. <view class="tips-main">
  41. <view class="tips">提示:请用上面的账号密码在PC端打开店铺管理中心进行登录。商家管理端地址 http://b2b2c-multishop.gz-yami.com</view>
  42. </view>
  43. </view>