index.wxml 1.3 KB

12345678910111213141516171819202122232425
  1. <view class="i-flex" wx:if="{{paymentCode=='cashon_delivery'}}">
  2. <view class="red u-font-24 u-m-r-10" wx:if="{{codeImg}}" bindtap="handleImgDialog">出示收款码</view>
  3. <view class="red u-font-24 u-m-r-10" wx:else>暂无收款码,请线下收款</view>
  4. <text class="iconfont icon-shuoming text-dark fsz-28" bindtap="handleTipDialog"></text>
  5. </view>
  6. <i-modal scrollUp="{{false}}" visible="{{showTipDialog}}">
  7. <view class="rule-modal bg-f w90p rounded">
  8. <view class="fsz-30 weight border-bottom text-center py10">收款码</view>
  9. <view class="p15 border-bottom fsz-28 line-height">
  10. 该订单为 “货到付款” 支付方式,用户订单签收的时候请出示“收款码”进行收款,或者其他方式收款,提前沟通确认,防止订单出错。
  11. </view>
  12. <view class="fsz-30 bule text-center py10" bindtap="handleTipDialog">知道了</view>
  13. </view>
  14. </i-modal>
  15. <i-modal scrollUp="{{false}}" visible="{{showImgDialog}}">
  16. <view class="rule-modal bg-f w90p rounded">
  17. <view class="fsz-30 weight border-bottom text-center py10">收款码</view>
  18. <view class="p15 border-bottom fsz-28 line-height text-center">
  19. <image src="{{codeImg}}" style="width: 480rpx;height:480rpx;"></image>
  20. </view>
  21. <view class="fsz-30 bule text-center py10" bindtap="handleImgDialog">关闭</view>
  22. </view>
  23. </i-modal>