Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

exbSignGetAuth.wxml 3.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!--plugin/etc/pages/exbSignGetAuth/exbSignGetAuth.wxml-->
  2. <block wx:if="{{signType == 0}}">
  3. <view class="col-start" style="height: 100vh;background-color: #F6F6F6;">
  4. <view class="card-bg">
  5. <!-- <view class="tip-title">微信签约</view> -->
  6. <view class="row-center" style="margin-top: 88rpx;">
  7. <image src="../../../static/etc/exbSignGetAuth/etc.png" mode="widthFix" class="tip-img" />
  8. <image src="../../../static/etc/exbSignGetAuth/change.png" mode="widthFix" style="width: 40rpx;height: 26rpx;margin-left: 52rpx;margin-right: 52rpx;" />
  9. <image src="../../../static/etc/exbSignGetAuth/wx.png" mode="widthFix" class="tip-img" />
  10. </view>
  11. <view class="tip-title" style="font-size: 28rpx;margin-top: 92rpx;margin-bottom: 28rpx;">我们需要获取您的微信授权,开通免密支付</view>
  12. <view class="pic-item">
  13. <image src="../../../static/etc/exbSignGetAuth/cz.png" mode="widthFix" class='pic-img' />
  14. <view class="col-start" style="align-items: flex-start;margin-left: 26rpx;">
  15. <view class="tip-title" style="font-size: 28rpx; margin-bottom: 4rpx;">无需充值</view>
  16. <view class="pic-msg">绑定微信支付,高速通行后自动扣费</view>
  17. <view class="line"></view>
  18. </view>
  19. </view>
  20. <view class="pic-item">
  21. <image src="../../../static/etc/exbSignGetAuth/aq.png" mode="widthFix" class='pic-img' />
  22. <view class="col-start" style="align-items: flex-start;margin-left: 26rpx;">
  23. <view class="tip-title" style="font-size: 28rpx; margin-bottom: 4rpx;">安全防盗刷</view>
  24. <view class="pic-msg">ETC设备仅限国家认证的专用设备扣款</view>
  25. <view class="line"></view>
  26. </view>
  27. </view>
  28. <view class="pic-item">
  29. <image src="../../../static/etc/exbSignGetAuth/gf.png" mode="widthFix" class='pic-img' />
  30. <view class="col-start" style="align-items: flex-start;margin-left: 26rpx;">
  31. <view class="tip-title" style="font-size: 28rpx; margin-bottom: 4rpx;">官方认证</view>
  32. <view class="pic-msg">微信官方保障,可靠安全</view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="t-tab-bar ">
  37. <view class="t-tab-bar--padding">
  38. <block wx:if="{{isNeedLogin}}">
  39. <etc-login type="1" bind:OnUpdate="configReloadLogin"></etc-login>
  40. </block>
  41. <block wx:else>
  42. <view bind:tap="onTapSign" class="bottom-btn row-center">开通服务</view>
  43. </block>
  44. </view>
  45. </view>
  46. </view>
  47. </block>
  48. <block wx:elif="{{signType == 1}}">
  49. <view class="col-start">
  50. <image src="../../../static/etc/signGetAuth/sign_status.png" mode="widthFix" style="width: 240rpx;height: 240rpx;" class="status-img" />
  51. <view style="font-size: 34rpx;margin-top: 6rpx;color: rgb(8, 14, 26);">正在验证签约状态…</view>
  52. </view>
  53. </block>
  54. <block wx:elif="{{signType == 2}}">
  55. <view class="col-start">
  56. <image src="../../../static/etc/signGetAuth/success.png" mode="widthFix" class="status-img" />
  57. <view style="font-size: 34rpx;margin-top: 62rpx;color: rgb(8, 14, 26);">验证完成</view>
  58. <view style="color: rgb(155, 161, 175);font-size: 28rpx;margin-top: 4rpx;">页面自动跳转中...</view>
  59. </view>
  60. </block>
  61. <block wx:elif="{{signType == 3}}">
  62. <view class="col-start">
  63. <image src="../../../static/etc/signGetAuth/fail.png" mode="widthFix" class="status-img" />
  64. <view style="font-size: 34rpx;margin-top: 62rpx;color: rgb(8, 14, 26);">签约失败</view>
  65. <view style="color: rgb(155, 161, 175);font-size: 28rpx;margin-top: 4rpx;">{{failMsg}}</view>
  66. <view class="re-btn col-center" bind:tap="tapReload">重新签约</view>
  67. </view>
  68. </block>