submit.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <block v-if="JSON.stringify(address) == '{}'">
  5. <view class="hflex acenter jbetween">
  6. <view class="title">新增收货地址</view>
  7. <u-icon name="arrow-right" color="#ABABAB" size="11"></u-icon>
  8. </view>
  9. </block>
  10. <block v-else>
  11. <view class="hflex acenter jbetween">
  12. <view class="hflex acenter">
  13. <u-icon name="map-fill" color="#506DFF" size="22"></u-icon>
  14. <view class="vflex" style="padding-left: 16rpx;">
  15. <view class="hflex acenter">
  16. <view class="text_style1" style="padding-right: 20rpx;">{{address.name}}</view>
  17. <view class="text_style1">{{address.phone}}</view>
  18. </view>
  19. <view class="text_style2">{{address.address}}</view>
  20. </view>
  21. </view>
  22. <u-icon name="arrow-right" color="#ABABAB" size="11"></u-icon>
  23. </view>
  24. </block>
  25. </view>
  26. <block v-for="(item,index) in goodList" :key="index">
  27. <view class="box">
  28. <view class="title">{{item.name}}</view>
  29. <view class="hflex acenter cell">
  30. <image :src="item.src" mode="aspectFill" class="img"></image>
  31. <view class="img_right">
  32. <view class="hflex acenter jbetween">
  33. <view class="item_name text_hide" style="width: 374rpx;">{{item.good_name}}</view>
  34. <view class="item_name">¥{{item.price}}</view>
  35. </view>
  36. <view class="hflex jbetween" style="padding: 2rpx 0 0;">
  37. <view class="norm">{{item.norm}}</view>
  38. <view class="left_text">X{{item.num}}</view>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="hflex acenter jbetween">
  43. <view class="title">订单备注</view>
  44. <u-input v-model="item.remarks" inputAlign="right" border="none" placeholder="建议留言前先与商家沟通确认"></u-input>
  45. </view>
  46. </view>
  47. </block>
  48. <view class="box">
  49. <view class="hflex acenter jbetween">
  50. <view class="left_text">商品金额</view>
  51. <view class="right_text">¥{{amount}}</view>
  52. </view>
  53. <view class="hflex acenter jbetween cell2">
  54. <view class="left_text">运费</view>
  55. <view class="right_text">¥{{freight}}</view>
  56. </view>
  57. <view class="hflex acenter jend item_bottom">
  58. <view class="title" style="font-size: 22rpx;">合计:<span class="text_red">¥{{total}}</span></view>
  59. </view>
  60. </view>
  61. <view class="box hflex acenter jbetween">
  62. <view class="hflex acenter">
  63. <image src="/static/images/shop/wx_pay.png" class="pay_icon"></image>
  64. <view class="text_style1">微信支付</view>
  65. </view>
  66. <u-radio-group>
  67. <u-radio activeColor="#506DFF"></u-radio>
  68. </u-radio-group>
  69. </view>
  70. <view class="bottom hflex acenter jend">
  71. <view class="title" style="font-size: 22rpx;">合计:<span class="text_blue">¥{{total}}</span></view>
  72. <view class="btn">提交订单</view>
  73. </view>
  74. </view>
  75. </template>
  76. <script>
  77. import $api from '@/static/js/api.js'
  78. var that = ''
  79. export default {
  80. data() {
  81. return {
  82. address: {
  83. name: '张大成',
  84. phone: '19876523456',
  85. address: '河北省 保定区 莲池区 未来石4号楼20221室',
  86. },
  87. goodList: [
  88. {
  89. name: '江南造船厂',
  90. src: '/static/images/index/class_img3.png',
  91. good_name: '扬子柴油发电机3kw/5kw…',
  92. price: '29.90',
  93. num: '1',
  94. remarks: '',
  95. norm: '规格类型:3kw单相手启动;颜色:黑色;配置:128G',
  96. }
  97. ],
  98. amount: '29.90',
  99. freight: '0.00',
  100. total: '29.90',
  101. order_no: '',
  102. }
  103. },
  104. onLoad(options) {
  105. that = this
  106. that.order_no = options.order_no
  107. that.getData()
  108. },
  109. methods: {
  110. getData() {
  111. $api.req({
  112. url: '/data/api.Order/order_info',
  113. method: 'POST',
  114. data: {
  115. order_id: that.order_no,
  116. }
  117. }, function(res) {
  118. if(res.code == 1) {
  119. $api.info(res.info)
  120. }
  121. })
  122. }
  123. },
  124. }
  125. </script>
  126. <style lang="scss" scoped>
  127. .content::v-deep {
  128. background-color: #F4F4F4;
  129. .box {
  130. background: #FFFFFF;
  131. border-radius: 10px;
  132. margin: 20rpx auto 0;
  133. width: 690rpx;
  134. box-sizing: border-box;
  135. padding: 34rpx 20rpx;
  136. .title {
  137. font-size: 32rpx;
  138. font-weight: 500;
  139. color: #222222;
  140. line-height: 44rpx;
  141. }
  142. .text_style1 {
  143. font-size: 28rpx;
  144. font-weight: 500;
  145. color: #222222;
  146. line-height: 40rpx;
  147. }
  148. .text_style2 {
  149. font-size: 26rpx;
  150. font-weight: 400;
  151. color: #888888;
  152. line-height: 36rpx;
  153. }
  154. .cell {
  155. padding: 20rpx 0 32rpx;
  156. }
  157. .cell2 {
  158. padding: 32rpx 0 20rpx;
  159. }
  160. .img {
  161. width: 160rpx;
  162. height: 160rpx;
  163. border-radius: 24rpx;
  164. }
  165. .img_right {
  166. width:calc(100% - 160rpx);
  167. padding-left: 20rpx;
  168. .item_name {
  169. font-size: 30rpx;
  170. font-weight: 400;
  171. color: #222222;
  172. line-height: 42rpx;
  173. }
  174. .norm {
  175. width: 288rpx;
  176. // height: 42px;
  177. background: #F5F5F5;
  178. border-radius: 12rpx;
  179. box-sizing: border-box;
  180. padding: 12rpx;
  181. font-size: 20rpx;
  182. font-weight: 400;
  183. color: #888888;
  184. line-height: 28rpx;
  185. }
  186. }
  187. .left_text {
  188. font-size: 24rpx;
  189. font-weight: 500;
  190. color: #888888;
  191. line-height: 28rpx;
  192. }
  193. .right_text {
  194. font-size: 24rpx;
  195. font-weight: bold;
  196. color: #222222;
  197. line-height: 28rpx;
  198. }
  199. .item_bottom {
  200. padding-top: 22rpx;
  201. border-top: 1rpx solid #F4F4F4;
  202. }
  203. .text_red {
  204. font-weight: bold;
  205. color: #EE5850;
  206. }
  207. .pay_icon {
  208. width: 48rpx;
  209. height: 48rpx;
  210. margin-right: 20rpx;
  211. }
  212. .check_icon {
  213. width: 32rpx;
  214. height: 32rpx;
  215. }
  216. }
  217. .box:nth-last-child(1) {
  218. margin-bottom: 186rpx;
  219. }
  220. .u-radio-group {
  221. flex: 0 !important;
  222. }
  223. .bottom {
  224. width: 100%;
  225. height: 166rpx;
  226. background: #FFFFFF;
  227. z-index: 9;
  228. position: fixed;
  229. bottom: 0;
  230. box-sizing: border-box;
  231. padding: 8rpx 50rpx 74rpx;
  232. .title {
  233. font-size: 24rpx;
  234. font-weight: 400;
  235. color: #222222;
  236. line-height: 34rpx;
  237. }
  238. .text_blue {
  239. font-size: 44rpx;
  240. color: #5270FF;
  241. }
  242. .btn{
  243. margin-left: 16rpx;
  244. width: 260rpx;
  245. height: 84rpx;
  246. background: #506DFF;
  247. border-radius: 42rpx;
  248. text-align: center;
  249. font-size: 36rpx;
  250. font-weight: 500;
  251. color: #FFFFFF;
  252. line-height: 84rpx;
  253. }
  254. }
  255. }
  256. </style>