order_submit.wxml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!--pages/order_submit/order_submit.wxml-->
  2. <!-- <text>pages/order_submit/order_submit.wxml</text> -->
  3. <!-- 确认订单页面 有备注 有按钮 有地址 -->
  4. <!-- 收货地址 -->
  5. <view class="ad">
  6. <view class="ad-box">
  7. <van-cell title="收货地址" value="请点击选择地址" is-link bind:click="showPopup" />
  8. <van-icon name="location-o" class="dz"/>
  9. <van-popup show="{{ show }}" position="bottom" custom-style="height: 90%;" bind:close="onClose">
  10. <view class="tan">
  11. 请选择收货地址
  12. </view>
  13. <!-- <van-cell icon="location-o" title="哈尔滨师范大学第一公寓2门312室" size="large" label="吴迪(先生)182****2898" >
  14. <van-radio-group value="{{ radio }}" bind:change="onChange">
  15. <van-radio name="1">单选框 1</van-radio>
  16. </van-radio-group>
  17. </van-cell> -->
  18. <view class="a">
  19. <van-cell label="吴迪(先生)182****2898">
  20. <view slot="title">
  21. <van-radio-group value="{{ radio }}" bind:change="onChange" >
  22. <van-radio name="0" checked-color="#FF8700">
  23. <view class="van-cell-text" >哈尔滨师范大学第一公寓2门312室
  24. <van-tag type="danger" style="margin-left: 8px;">默认</van-tag>
  25. </view>
  26. <!-- <view class="van-cell-text">吴迪(先生)182****2898</view> -->
  27. </van-radio>
  28. </van-radio-group>
  29. </view>
  30. <view class="xiugai">
  31. <van-icon name="edit" color="#9E9E9E" size="20px"/>
  32. <text >编辑</text>
  33. </view>
  34. </van-cell>
  35. </view>
  36. <!-- 弹出窗内容--结束 -->
  37. </van-popup>
  38. </view>
  39. </view>
  40. <!-- 商品信息 -->
  41. <view class="food">
  42. <text class="food-text">二楼麻辣烫、麻辣香锅、麻辣拌饭</text>
  43. </view>
  44. <view class="store-box">
  45. <image src="../image/商品.png" mode="" />
  46. <view class="store-message">
  47. <text class="store-title">麻辣烫微辣微麻</text>
  48. <text class="store-price01">¥10.98+40积分</text>
  49. <text class="store-price02">¥28.80</text>
  50. <view>
  51. <text class="store-numb">*2</text>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="others-box">
  56. <text class="other01">包装费</text>
  57. <text class="other02">¥0</text>
  58. </view>
  59. <view class="others-box">
  60. <text class="other01">付款费</text>
  61. <text class="other02">¥3</text>
  62. </view>
  63. <view class="others-boxs">
  64. <text class="others01">已优惠</text>
  65. <text class="others02">¥10</text>
  66. <text class="others01">累计</text>
  67. <text class="others02">¥21.8</text>
  68. </view>
  69. <!-- 备注 -->
  70. <view>
  71. <van-cell-group inset>
  72. <van-field v-model="message" rows="2" autosize label="备注:" type="textarea" maxlength="15" placeholder="请输入备注" show-word-limit />
  73. </van-cell-group>
  74. </view>
  75. <!-- 提交订单按钮 -->
  76. <view class="btn">
  77. <view class="btn-box">
  78. <text class="btn-text01">累计:</text>
  79. <text class="btn-text02">¥10.98</text>
  80. <van-button class="order-btn" type="warning" round >提交订单</van-button>
  81. </view>
  82. </view>