confirmOrder.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <view style="margin-top: 40px;">
  3. <view style="background-color: #fff;">
  4. <view class="cu-bar bg-white ">
  5. <view class="action">
  6. <text class="cuIcon-titles text-orange"></text> 配送方式
  7. </view>
  8. </view>
  9. <scroll-view scroll-x class="bg-white nav">
  10. <view class="flex text-center">
  11. <view class="cu-item flex-sub" :class="TabCur=='1'?'text-orange cur':''" @tap="tabSelect" :data-id="1">
  12. 配送
  13. </view>
  14. <view class="cu-item flex-sub" :class="TabCur=='2'?'text-orange cur':''" @tap="tabSelect" :data-id="2">
  15. 到店
  16. </view>
  17. </view>
  18. </scroll-view>
  19. <uni-datetime-picker type="datetime" v-model="datetimesingle" placeholder="预计时间" />
  20. </view>
  21. <view style="background-color: #fff;">
  22. <!-- <view style="font-size: 25px;padding:10px; border-bottom: 1px solid black;width: 100%;">收货地址</view><br /> -->
  23. <view class="cu-bar bg-white ">
  24. <view class="action">
  25. <text class="cuIcon-titles text-orange"></text> 收货地址
  26. </view>
  27. </view>
  28. <view style="width: 100%;padding:10px;" class="ss-flex">
  29. <view style="width: 40%;font-size: 20px;">{{ addressList.name }}</view>
  30. <view style="width: 50%;font-size: 20px;">{{ addressList.phone }}</view>
  31. </view>
  32. <view style="width: 100%;padding:10px;">{{ addressList.address }}</view>
  33. <button style="margin: 20px;" type="primary"
  34. @tap="sheep.$router.go('/pages/user/address/edit')">修改地址</button>
  35. </view>
  36. <view style="height: 50vh;">
  37. <view class="cu-bar bg-white ">
  38. <view class="action">
  39. <text class="cuIcon-titles text-orange"></text> 购物车
  40. </view>
  41. </view>
  42. <view style="height: 50vh;overflow-y: auto;background-color: #fff;">
  43. <view v-for="(i, j) in nowCartList" :key="j" class="minmi" style="width: 100vw;">
  44. <image class="imgPic" :src="i.url" mode=""></image>
  45. <view class="rightContainer">
  46. <view class="foodName">
  47. {{ i.name }}
  48. </view>
  49. <view class="foodPrice">
  50. <view class="priceflex">
  51. <text class="zero">¥</text>
  52. {{ i.price }}
  53. </view>
  54. <view class="shopCar iconfont-themeColor-write" v-show="i.num == 0" @tap="addcart(i)">
  55. <text class="lg text-white cuIcon-add"></text>
  56. </view>
  57. <view class="" v-if="i.num > 0">
  58. <!-- <text class="lg text-white cuIcon-minus" @tap="addcart(i)" ></text> -->
  59. <!-- <uni-number-box :min="0" :max="100" :step="1" v-model="i.num" @tap="chengeCart(i)" /> -->
  60. <text>{{ i.num }}</text>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <button class="bg-red submit" @click="handleOk()">立即支付</button>
  67. </view>
  68. </view>
  69. </template>
  70. <script setup>
  71. import sheep from '@/sheep';
  72. import { onLaunch, onShow, onError } from '@dcloudio/uni-app';
  73. import { computed, reactive, ref } from 'vue';
  74. import goodsApi from '@/sheep/api/restaurant/goods'
  75. const cart = sheep.$store('cart');
  76. const TabCur = ref(1)
  77. const datetimesingle = ref('')
  78. const nowCartList= computed(() => cart.list)
  79. const addressList = computed(() => {
  80. let addressList = sheep.$store('user').addressList
  81. console.log('restaurant', addressList)
  82. return addressList
  83. })
  84. const handleOk= async () =>{
  85. let pamser = {
  86. name: addressList.value.name,
  87. phone: addressList.value.phone,
  88. address: addressList.value.address,
  89. useTime:datetimesingle.value,
  90. type: TabCur.value,
  91. goodsList:nowCartList.value,
  92. openid :uni.getStorageSync('openid')
  93. }
  94. const formData = {
  95. ...pamser
  96. }
  97. console.log('pamser',formData)
  98. await goodsApi.createOrder(formData).then(res => {
  99. console.log(res)
  100. })
  101. }
  102. const tabSelect= (e) =>{
  103. console.log(e.currentTarget.dataset.id)
  104. TabCur.value = e.currentTarget.dataset.id;
  105. }
  106. </script>
  107. <style scoped lang="scss">
  108. .title{
  109. width: 99%;
  110. text-align: left;
  111. padding-left: 10px;
  112. border-left: 5px solid red;
  113. font-size: 18px;
  114. margin-left: 20px;
  115. margin-top: 10px;
  116. font-weight: 800;
  117. }
  118. .active {
  119. font-size: 30upx;
  120. color: #F9BE3E;
  121. }
  122. .active2 {
  123. font-size: 30upx;
  124. }
  125. .min {
  126. display: flex;
  127. flex-direction: row;
  128. justify-content: space-around;
  129. flex-wrap: wrap;
  130. // margin: 20px 0;
  131. background-color: white;
  132. padding-bottom: 20px;
  133. }
  134. .minmi {
  135. display: flex;
  136. width: 592upx;
  137. margin-left: 25upx;
  138. padding-top: 51upx;
  139. .imgPic {
  140. width: 208upx;
  141. height: 167upx;
  142. border-radius: 10upx;
  143. margin-left: 20upx;
  144. }
  145. .rightContainer {
  146. display: flex;
  147. flex-direction: column;
  148. height: 167upx;
  149. box-sizing: border-box;
  150. justify-content: space-between;
  151. align-items: flex-start;
  152. padding-left: 18upx;
  153. padding-right: 18upx;
  154. padding-top: 18upx;
  155. // padding-bottom: 18upx;
  156. flex: 1;
  157. .foodName {
  158. font-weight: 700;
  159. font-size: 25upx;
  160. }
  161. .foodPrice {
  162. display: flex;
  163. justify-content: space-between;
  164. width: 375upx;
  165. color: #F9BE3E;
  166. .priceflex {
  167. display: flex;
  168. align-items: center;
  169. .zero {
  170. font-size: 15upx;
  171. }
  172. }
  173. .shopCar {
  174. background-color: #F9BE3E;
  175. border-radius: 45upx;
  176. width: 112upx;
  177. height: 45upx;
  178. font-size: 25upx;
  179. text-align: center;
  180. line-height: 46upx;
  181. }
  182. }
  183. }
  184. }
  185. .aside-main {
  186. width: 100%;
  187. display: flex;
  188. flex-direction: row;
  189. justify-content: space-between;
  190. box-sizing: border-box;
  191. }
  192. .scroll-Y1 {
  193. flex: 1;
  194. box-sizing: border-box;
  195. }
  196. .scroll-Y1 view {
  197. text-align: center;
  198. padding-top: 33upx;
  199. // padding-bottom: 33upx;
  200. }
  201. .scroll-Y2 {
  202. flex: 3;
  203. box-sizing: border-box;
  204. // padding-bottom: 170upx;
  205. }
  206. .scroll-Y2 view {
  207. text-align: center;
  208. /* margin:20upx; */
  209. }
  210. .icon {
  211. width: 50upx;
  212. height: 50upx;
  213. margin-top: 10upx;
  214. }
  215. .icon1 {
  216. width: 30upx;
  217. height: 30upx;
  218. position: absolute;
  219. top: 15upx;
  220. left: 10upx;
  221. }
  222. .btn {
  223. width: 140upx;
  224. height: 60upx;
  225. line-height: 60upx;
  226. margin: 0;
  227. padding: 0;
  228. font-size: 30upx;
  229. }
  230. .serch {
  231. height: 60upx;
  232. flex: 2;
  233. margin-left: 20upx;
  234. margin-right: 20upx;
  235. box-sizing: border-box;
  236. border: solid 1upx #ccc;
  237. border-radius: 10upx;
  238. position: relative;
  239. }
  240. .serch input {
  241. height: 60upx;
  242. margin-left: 60upx;
  243. }
  244. </style>