purchase-a-details.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <import src="../../public/page/purchase-details.wxml" />
  2. <import src="../../../../public/pages/public-view.wxml" />
  3. <scroll-view scroll-y="{{scroll}}" class="bg-scroll-view" bindscroll="scroll" scroll-with-animation scroll-top="{{scrollView.top}}">
  4. <template is="purchase-top" data="{{...adapter}}" />
  5. <template is="right-line" />
  6. <view class="scope-view">
  7. <text>缴费范围</text>
  8. <view>
  9. <text>下限{{limit[0]}}元/月-上限{{limit[1]}}元/月</text>
  10. <text>根据自身需要选择缴费金额</text>
  11. </view>
  12. </view>
  13. <template is="tips-view" wx:if="{{tips.s}}" data="{{...tips}}" />
  14. <template is="charge-view" data="{{charge: adapter.charge}}" />
  15. <template is="purchase-details-tips" data="{{...ui.tips}}"/>
  16. <view class="scroll-view-bottom-view-n{{adapter.suffix}}"></view>
  17. </scroll-view>
  18. <view class="purchase-details-choose" style="position: fixed;top: 0;left:0" hidden="{{chooseHidden}}">
  19. <view>
  20. <view wx:for="{{ui.tips.choose.t}}" id="{{index}}" bindtap="tipsChoose" style="color:{{index == ui.tips.choose.c ? '#3296FB' : '#666666'}};" wx:key="">{{item}}</view>
  21. </view>
  22. <view>
  23. <view></view>
  24. <view animation="{{ui.tips.choose.animation}}">
  25. <view></view>
  26. </view>
  27. </view>
  28. </view>
  29. <template is="purchase-bottom" data="{{...adapter}}" />
  30. <contact show="{{showContact}}" showHeight="{{showContactHeight}}" bindhiddenContact="hiddenContactListener"></contact>