index.wxml 989 B

123456789101112131415161718192021
  1. <view class="gradeContainer" catchtouchmove='true' wx:if="{{state}}">
  2. <view class="popBox zoomIn">
  3. <view class="title">选择支付方式
  4. <image src="/static/bclose.png" class="close" bindtap="closeTranscript" />
  5. </view>
  6. <radio-group catch:change="radioChange" class="group">
  7. <label class="weui-cell" wx:for="{{items}}" wx:key="value">
  8. <view class="pay-row">
  9. <image src="/static/{{item.value}}.png" class="{{item.value}}" />
  10. <view class="name">{{item.name}}支付</view>
  11. </view>
  12. <radio value="{{item.value}}" checked="{{item.checked}}" color='#FFAC00' />
  13. </label>
  14. </radio-group>
  15. <view class="paymentBox">
  16. <view class="payment">应付款:<view class="num">¥{{product.price/100}}</view>
  17. </view>
  18. <view class="pay" bindtap="toBuy">立即支付</view>
  19. </view>
  20. </view>
  21. </view>