index.axml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <view class="page">
  2. <view class="main" onTap="clickAudio">
  3. <top-title isHomePage="{{true}}" />
  4. <view class="content">
  5. <view class="content-top flex1">
  6. <view
  7. a:for="{{ tabList }}"
  8. a:if="{{ index == 0 || (index > 0 && !snDisposition.hiddenButton) }}"
  9. class="tab flex2 magnify"
  10. a:key="index"
  11. onTap="goto"
  12. data-item={{item}}
  13. >
  14. <image class="tab-icon" mode="scaleToFill" src="{{item.img}}" />
  15. <view>{{item.tit}}</view>
  16. </view>
  17. </view>
  18. <view class="content-center flex1">
  19. <view
  20. a:for="{{ centerList }}"
  21. a:if="{{ item.isShow }}"
  22. class="center magnify"
  23. a:key="index"
  24. onTap="goto"
  25. data-item="{{item}}"
  26. >
  27. <image
  28. class="center-icon {{'center-icon'+index}}"
  29. mode="scaleToFill"
  30. src="{{item.img}}"
  31. />
  32. <view>{{item.tit}}</view>
  33. </view>
  34. </view>
  35. </view>
  36. <view
  37. a:if="{{ snDisposition.wxScanRegister ||snDisposition.zfbScanRegister }}"
  38. class="scan-code flex1"
  39. >
  40. <view a:if="{{snDisposition.zfbScanRegister }}" class="qrcode-box">
  41. <text>支付宝</text>
  42. <image mode="scaleToFill" src="{{qrImgZFB}}" class="qrcode" data-src="{{qrImgZFB}}" />
  43. </view>
  44. <view class="tip-text">
  45. 未携带身份证,手机扫码登记
  46. <!--<text class="blod blue">,支持支付宝</text> 、<text class="blod">微信</text> 扫码 -->
  47. </view>
  48. <view a:if="{{ snDisposition.wxScanRegister }}" class="qrcode-box">
  49. <text>微信</text>
  50. <image mode="scaleToFill" src="{{qrImgWX}}" class="qrcode" data-src="{{qrImgWX}}" />
  51. </view>
  52. </view>
  53. <bottom-parnel suerName="确定" onSure="sure" isHomePage="{{true}}" showBtn="{{false}}" />
  54. </view>
  55. </view>