Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

87 рядки
3.9 KiB

  1. <view>
  2. <view class='mine'>
  3. <image class='img' src='./../../static/images/bannerbg.png' mode="widthFix"></image>
  4. <view class='header' bindtap='toDetail'>
  5. <view>
  6. <image src='{{userInfo.merchant_img_url}}' mode='{{widthFix}}'></image>
  7. </view>
  8. <view>
  9. <text>{{userInfo.mall_name}}({{userInfo.merchant_name}})</text>
  10. <text>{{userInfo.phone}}</text>
  11. </view>
  12. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  13. </view>
  14. <view class="withdrawBox" wx:if="{{cashOutSupport==1}}">
  15. <view class="textBox">
  16. <view class="balanceTitle">账户余额</view>
  17. <view class="hint">(提现失败,在48小时回退余额)</view>
  18. </view>
  19. <view class="balanceNum">¥{{cashOutNumber/100}}</view>
  20. <view class="operationNum">当日还可提现次数:{{withdrawNun}}</view>
  21. <button class="operationBut" bindtap="withdraw" wx:if="{{withdrawNun>0}}">提现到零钱</button>
  22. <button class="noOperationBut" wx:if="{{withdrawNun<=0}}">提现次数已耗尽</button>
  23. </view>
  24. <view class='section'>
  25. <navigator url='/pages/withdrawRecord/withdrawRecord' open-type='navigate' hover-class='none' wx:if="{{cashOutSupport==1}}">
  26. <view>
  27. <text>提现记录</text>
  28. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  29. </view>
  30. </navigator>
  31. <navigator url='/pages/index/forgetpwd/forgetpwd?flags=reset' open-type='navigate' hover-class='none'>
  32. <view>
  33. <text>修改密码</text>
  34. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  35. </view>
  36. </navigator>
  37. <navigator wx:if="{{mchType==0}}" url='/pages/accountManagement/index?merchant_id={{userInfo.merchant_id}}&merchant_name={{userInfo.merchant_name}}&phone={{userInfo.phone}}' open-type='navigate' hover-class='none'>
  38. <view>
  39. <text>收款账户管理</text>
  40. <text wx:if="{{!isSet}}">未添加</text>
  41. <text wx:if="{{isSet}}">{{receiverType==3?receiverComments:receiverAccount}}</text>
  42. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  43. </view>
  44. </navigator>
  45. <navigator wx:if="{{mchType==1}}" url='/pages/warehouse/warehouse' open-type='navigate' hover-class='none'>
  46. <view>
  47. <text>收款账户管理</text>
  48. <text wx:if="{{!isSet}}">未添加</text>
  49. <text wx:if="{{isSet}}">{{receiverAccount}}</text>
  50. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  51. </view>
  52. </navigator>
  53. <navigator url='/pages/couponRecord/index' open-type='navigate' hover-class='none'>
  54. <view>
  55. <text>我的赠券</text>
  56. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  57. </view>
  58. </navigator>
  59. <navigator url='/pages/memberlist/index' open-type='navigate' hover-class='none'>
  60. <view>
  61. <text>会员列表</text>
  62. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  63. </view>
  64. </navigator>
  65. <navigator url='/pages/creditOperate/index' open-type='navigate' hover-class='none'>
  66. <view>
  67. <text>积分操作记录</text>
  68. <image class='imgs' src='./../../static/images/jian.png' mode="widthFix"></image>
  69. </view>
  70. </navigator>
  71. <view bindtap='phone' data-phone='{{userInfo.service_phone}}'>
  72. <text>客服电话</text>
  73. <text>{{userInfo.service_phone}}</text>
  74. </view>
  75. </view>
  76. <view bindlongtap='showVersion' class='version'>
  77. <view wx:if="{{flag=='show'}}">版本号:{{appVersion}}</view>
  78. <view wx:if="{{flag=='hidden'}}"></view>
  79. </view>
  80. <button class='exit' bindtap='toExit' hover-class='active'>退出登录</button>
  81. </view>
  82. </view>