seckillOrder.wxml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <import src="/components/local/wxParse/wxParse.wxml" />
  2. <view class="item margin item-radius">
  3. <!-- 店铺名字 -->
  4. <view class="item-top flex-align-center ">
  5. <text class="flex1">{{storeName}}</text>
  6. </view>
  7. <!-- 商品详情支付 -->
  8. <view class="good-list">
  9. <view class="item-content flex">
  10. <image class="img" src="{{seckillDetail.cover_url}}"></image>
  11. <view class="content flex-column">
  12. <view class="content-text-box flex1">
  13. <text class="flex1">{{seckillDetail.goods_name}}</text>
  14. </view>
  15. <view class="project-num">x1</view>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="item-bottom">
  20. <view class="item-total">共1件</view>
  21. <view class="item-price"><text class="price-size">¥</text>{{seckillDetail.price}}</view>
  22. </view>
  23. </view>
  24. <view class="margin order-sum item-radius">
  25. <view class="bottom flex-align-center">
  26. <text style="font-size: 28rpx;color: #999;">合计:</text>
  27. <text class="total-price">¥{{seckillDetail.price}}</text>
  28. </view>
  29. </view>
  30. <!-- 提交订单 -->
  31. <view class="buy flex-align-center flex-justify-space-between" style="padding: 0 20rpx;">
  32. <view class="submitBtn" bindtap="ongoodsPay">
  33. 提交订单
  34. </view>
  35. </view>
  36. <!-- 支付 -->
  37. <wux-popup class="popup-radius" position="bottom" catchtouchmove="true" visible="{{ payNow }}" bind:close="onClosePay">
  38. <view class="coupon-popup payType">
  39. <view class="top flex-align-center">
  40. <text style="text-align: center;"></text>
  41. <image src="/images/icon_20.png" class="close-img" bindtap="onClosePay" />
  42. </view>
  43. <!-- 购物车订单 -->
  44. <view class="moneyShow"><text>¥</text>{{seckillDetail.price}}</view>
  45. <view class="select-pay-methon" catchtap="pay_methonw">
  46. <image class="pay-img" src="/images/wx_pay.png"></image>
  47. <view class="pay-title">微信支付</view>
  48. <!-- <view class="pay-money"><text>¥</text>800</view> -->
  49. <image class="select-activity" src="{{pay_methon==1?'/images/icon_13.png':'/images/icon_12.png'}}"></image>
  50. </view>
  51. <view class="select-pay-methon" catchtap="pay_methonc" style="margin-bottom: 15rpx;">
  52. <image class="pay-img" src="/images/joli_pay.png"></image>
  53. <view class="pay-title">储值支付</view>
  54. <view class="pay-money"><text>¥</text>{{inserllAmount}}</view>
  55. <image class="select-activity" src="{{pay_methon==2?'/images/icon_13.png':'/images/icon_12.png'}}"></image>
  56. </view>
  57. <view class="coupon-popup-btm flex-center">
  58. <view class="coupon-popup-btm-btn flex-center" bindtap="payOrder">支付</view>
  59. </view>
  60. </view>
  61. </wux-popup>