index.wxml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <nav type="back" background-color="{{activeColor}}" title="提交订单" frontColor="#ffffff" />
  2. <view class="order">
  3. <image class="order-image" src="{{goods.image}}"></image>
  4. <view class="order-box">
  5. <view class="order-name">{{goods.name}}</view>
  6. <view class="order-price">¥{{goods.price}}</view>
  7. <view class="order-portion">
  8. <view class="order-time">{{goods.shopStore.workingTime}}</view>
  9. <!-- <view>
  10. <van-stepper value="{{ number }}" bind:change="onChange" />
  11. </view> -->
  12. </view>
  13. </view>
  14. </view>
  15. <view class="box">
  16. <view class="name">{{shopstore.storeName}}</view>
  17. <view class="time">营业时间:{{shopstore.workingTime}}</view>
  18. <view class="time">地址:{{shopstore.address}}</view>
  19. <view class="taxi">
  20. <view class="taxi-box" bindtap="taxi">
  21. <view class="taxi-phone">
  22. <van-icon size="60rpx" name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220413/5oaona032247.png" />
  23. </view>
  24. <view class="taxi-name">打车</view>
  25. </view>
  26. <view class="taxi-boxs" bindtap="phone">
  27. <view class="taxi-phone">
  28. <van-icon size="60rpx" name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220413/jip51n032425.png" />
  29. </view>
  30. <view class="taxi-name">电话</view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="box">
  35. <view class="name">卡券内容</view>
  36. <rich-text nodes="{{goods.details}}" style="width: 92%;height: 100%; margin-right: 0 auto;"></rich-text>
  37. </view>
  38. <view class="box">
  39. <view class="name">温馨提示</view>
  40. <block wx:for="{{goods.services}}" wx:key="index">
  41. <view class="voucher">{{item.value}}</view>
  42. </block>
  43. </view>
  44. <view class="bommon">
  45. <view class="bommon-price">合计:¥{{prices}}</view>
  46. <view class="bommon-submit" bindtap="submit" style="background-color: {{activeColor}};">提交订单</view>
  47. </view>
  48. <payment style="z-index: 99999;" id='payMent' show="{{show}}" tradeNo="{{tradeNo}}" price="{{prices}}" bind:payResult='acceptResult' showType="all" />