confirm.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. <template>
  2. <s-layout title="确认订单">
  3. <!-- TODO:这个判断先删除 v-if="state.orderInfo.need_address === 1" -->
  4. <view class="bg-white address-box ss-m-b-14 ss-r-b-10" @tap="onSelectAddress">
  5. <s-address-item :item="state.addressInfo" :hasBorderBottom="false">
  6. <view class="ss-rest-button">
  7. <text class="_icon-forward" />
  8. </view>
  9. </s-address-item>
  10. </view>
  11. <!-- 商品信息 -->
  12. <view class="order-card-box ss-m-b-14">
  13. <s-goods-item
  14. v-for="item in state.orderInfo.items"
  15. :key="item.skuId"
  16. :img="item.picUrl"
  17. :title="item.spuName"
  18. :skuText="item.properties.map((property) => property.valueName).join(' ')"
  19. :price="item.price"
  20. :num="item.count"
  21. marginBottom="10"
  22. />
  23. <view class="order-item ss-flex ss-col-center ss-row-between ss-p-x-20 bg-white ss-r-10">
  24. <view class="item-title">订单备注</view>
  25. <view class="ss-flex ss-col-center">
  26. <uni-easyinput
  27. maxlength="20"
  28. placeholder="建议留言前先与商家沟通"
  29. v-model="state.orderPayload.remark"
  30. :inputBorder="false"
  31. :clearable="false"
  32. />
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 价格信息 -->
  37. <view class="bg-white total-card-box ss-p-20 ss-m-b-14 ss-r-10">
  38. <view class="total-box-content border-bottom">
  39. <view class="order-item ss-flex ss-col-center ss-row-between">
  40. <view class="item-title">商品金额</view>
  41. <view class="ss-flex ss-col-center">
  42. <text class="item-value ss-m-r-24">
  43. ¥{{ fen2yuan(state.orderInfo.price.totalPrice) }}
  44. </text>
  45. </view>
  46. </view>
  47. <!-- TODO 芋艿:接入积分 -->
  48. <view
  49. class="order-item ss-flex ss-col-center ss-row-between"
  50. v-if="state.orderPayload.order_type === 'score'"
  51. >
  52. <view class="item-title">扣除积分</view>
  53. <view class="ss-flex ss-col-center">
  54. <image
  55. :src="sheep.$url.static('/static/img/shop/goods/score1.svg')"
  56. class="score-img"
  57. />
  58. <text class="item-value ss-m-r-24">{{ state.orderInfo.score_amount }}</text>
  59. </view>
  60. </view>
  61. <view class="order-item ss-flex ss-col-center ss-row-between">
  62. <view class="item-title">运费</view>
  63. <view class="ss-flex ss-col-center">
  64. <text class="item-value ss-m-r-24">
  65. +¥{{ fen2yuan(state.orderInfo.price.deliveryPrice) }}
  66. </text>
  67. </view>
  68. </view>
  69. <!-- 优惠劵:只有 type = 0 普通订单(非拼团、秒杀、砍价),才可以使用优惠劵 -->
  70. <!-- 暂时隐藏优惠卷 -->
  71. <!-- <view
  72. class="order-item ss-flex ss-col-center ss-row-between"
  73. v-if="state.orderInfo.type === 0"
  74. >
  75. <view class="item-title">优惠券</view>
  76. <view class="ss-flex ss-col-center" @tap="state.showCoupon = true">
  77. <text class="item-value text-red" v-if="state.orderPayload.couponId > 0">
  78. -¥{{ fen2yuan(state.orderInfo.price.couponPrice) }}
  79. </text>
  80. <text
  81. class="item-value"
  82. :class="state.couponInfo.length > 0 ? 'text-red' : 'text-disabled'"
  83. v-else
  84. >
  85. {{
  86. state.couponInfo.length > 0 ? state.couponInfo.length + ' 张可用' : '暂无可用优惠券'
  87. }}
  88. </text>
  89. <text class="_icon-forward item-icon" />
  90. </view>
  91. </view> -->
  92. <view
  93. class="order-item ss-flex ss-col-center ss-row-between"
  94. v-if="state.orderInfo.price.discountPrice > 0"
  95. >
  96. <view class="item-title">活动优惠</view>
  97. <view class="ss-flex ss-col-center">
  98. <!-- @tap="state.showDiscount = true" TODO 芋艿:后续要把优惠信息打进去 -->
  99. <text class="item-value text-red">
  100. -¥{{ fen2yuan(state.orderInfo.price.discountPrice) }}
  101. </text>
  102. <text class="_icon-forward item-icon" />
  103. </view>
  104. </view>
  105. </view>
  106. <view class="total-box-footer ss-font-28 ss-flex ss-row-right ss-col-center ss-m-r-28">
  107. <view class="total-num ss-m-r-20">
  108. 共{{ state.orderInfo.items.reduce((acc, item) => acc + item.count, 0) }}件
  109. </view>
  110. <view>合计:</view>
  111. <view class="total-num text-red"> ¥{{ fen2yuan(state.orderInfo.price.payPrice) }} </view>
  112. </view>
  113. </view>
  114. <!-- 选择优惠券弹框 -->
  115. <s-coupon-select
  116. v-model="state.couponInfo"
  117. :show="state.showCoupon"
  118. @confirm="onSelectCoupon"
  119. @close="state.showCoupon = false"
  120. />
  121. <!-- 满额折扣弹框 TODO 芋艿:后续要把优惠信息打进去 -->
  122. <s-discount-list
  123. v-model="state.orderInfo"
  124. :show="state.showDiscount"
  125. @close="state.showDiscount = false"
  126. />
  127. <!-- 底部 -->
  128. <su-fixed bottom :opacity="false" bg="bg-white" placeholder :noFixed="false" :index="200">
  129. <view class="footer-box border-top ss-flex ss-row-between ss-p-x-20 ss-col-center">
  130. <view class="total-box-footer ss-flex ss-col-center">
  131. <view class="total-num ss-font-30 text-red">
  132. ¥{{ fen2yuan(state.orderInfo.price.payPrice) }}
  133. </view>
  134. </view>
  135. <button
  136. class="ss-reset-button ui-BG-Main-Gradient ss-r-40 submit-btn ui-Shadow-Main"
  137. @tap="onConfirm"
  138. >
  139. 提交订单
  140. </button>
  141. </view>
  142. </su-fixed>
  143. </s-layout>
  144. </template>
  145. <script setup>
  146. import { reactive } from 'vue';
  147. import { onLoad } from '@dcloudio/uni-app';
  148. import sheep from '@/sheep';
  149. import { isEmpty } from 'lodash';
  150. import OrderApi from '@/sheep/api/trade/order';
  151. import CouponApi from '@/sheep/api/promotion/coupon';
  152. import { fen2yuan } from '@/sheep/hooks/useGoods';
  153. const state = reactive({
  154. orderPayload: {},
  155. orderInfo: {
  156. items: [], // 商品项列表
  157. price: {}, // 价格信息
  158. },
  159. addressInfo: {}, // 选择的收货地址
  160. showCoupon: false, // 是否展示优惠劵
  161. couponInfo: [], // 优惠劵列表
  162. showDiscount: false, // 是否展示营销活动
  163. });
  164. // 选择地址
  165. function onSelectAddress() {
  166. uni.$once('SELECT_ADDRESS', (e) => {
  167. changeConsignee(e.addressInfo);
  168. });
  169. sheep.$router.go('/pages/user/address/list');
  170. }
  171. // 更改收货人地址&计算订单信息
  172. async function changeConsignee(addressInfo = {}) {
  173. if (!isEmpty(addressInfo)) {
  174. state.addressInfo = addressInfo;
  175. }
  176. await getOrderInfo();
  177. }
  178. // 选择优惠券
  179. async function onSelectCoupon(couponId) {
  180. state.orderPayload.couponId = couponId || 0;
  181. await getOrderInfo();
  182. state.showCoupon = false;
  183. }
  184. // 提交订单
  185. function onConfirm() {
  186. if (!state.addressInfo.id) {
  187. sheep.$helper.toast('请选择收货地址');
  188. return;
  189. }
  190. submitOrder();
  191. }
  192. // 创建订单&跳转
  193. async function submitOrder() {
  194. const { code, data } = await OrderApi.createOrder({
  195. items: state.orderPayload.items,
  196. couponId: state.orderPayload.couponId,
  197. addressId: state.addressInfo.id,
  198. deliveryType: 1, // TODO 芋艿:需要支持【门店自提】
  199. pointStatus: false, // TODO 芋艿:需要支持【积分选择】
  200. combinationActivityId: state.orderPayload.combinationActivityId,
  201. combinationHeadId: state.orderPayload.combinationHeadId,
  202. seckillActivityId: state.orderPayload.seckillActivityId
  203. });
  204. if (code !== 0) {
  205. return;
  206. }
  207. // 更新购物车列表,如果来自购物车
  208. if (state.orderPayload.items[0].cartId > 0) {
  209. sheep.$store('cart').getList();
  210. }
  211. // 跳转到支付页面
  212. sheep.$router.redirect('/pages/pay/index', {
  213. id: data.payOrderId,
  214. });
  215. }
  216. // 检查库存 & 计算订单价格
  217. async function getOrderInfo() {
  218. // 计算价格
  219. const { data, code } = await OrderApi.settlementOrder({
  220. items: state.orderPayload.items,
  221. couponId: state.orderPayload.couponId,
  222. addressId: state.addressInfo.id,
  223. deliveryType: 1, // TODO 芋艿:需要支持【门店自提】
  224. pointStatus: false, // TODO 芋艿:需要支持【积分选择】
  225. combinationActivityId: state.orderPayload.combinationActivityId,
  226. combinationHeadId: state.orderPayload.combinationHeadId,
  227. seckillActivityId: state.orderPayload.seckillActivityId
  228. });
  229. if (code !== 0) {
  230. return;
  231. }
  232. state.orderInfo = data;
  233. // 设置收货地址
  234. if (state.orderInfo.address) {
  235. state.addressInfo = state.orderInfo.address;
  236. }
  237. }
  238. // 获取可用优惠券
  239. async function getCoupons() {
  240. const { code, data } = await CouponApi.getMatchCouponList(
  241. state.orderInfo.price.payPrice,
  242. state.orderInfo.items.map((item) => item.spuId),
  243. state.orderPayload.items.map((item) => item.skuId),
  244. state.orderPayload.items.map((item) => item.categoryId),
  245. );
  246. if (code === 0) {
  247. state.couponInfo = data;
  248. }
  249. }
  250. onLoad(async (options) => {
  251. if (!options.data) {
  252. sheep.$helper.toast('参数不正确,请检查!');
  253. return;
  254. }
  255. state.orderPayload = JSON.parse(options.data);
  256. await getOrderInfo();
  257. await getCoupons();
  258. });
  259. </script>
  260. <style lang="scss" scoped>
  261. :deep() {
  262. .uni-input-wrapper {
  263. width: 320rpx;
  264. }
  265. .uni-easyinput__content-input {
  266. font-size: 28rpx;
  267. height: 72rpx;
  268. text-align: right !important;
  269. padding-right: 0 !important;
  270. .uni-input-input {
  271. font-weight: 500;
  272. color: #333333;
  273. font-size: 26rpx;
  274. height: 32rpx;
  275. margin-top: 4rpx;
  276. }
  277. }
  278. .uni-easyinput__content {
  279. display: flex !important;
  280. align-items: center !important;
  281. justify-content: right !important;
  282. }
  283. }
  284. .score-img {
  285. width: 36rpx;
  286. height: 36rpx;
  287. margin: 0 4rpx;
  288. }
  289. .order-item {
  290. height: 80rpx;
  291. .item-title {
  292. font-size: 28rpx;
  293. font-weight: 400;
  294. }
  295. .item-value {
  296. font-size: 28rpx;
  297. font-weight: 500;
  298. font-family: OPPOSANS;
  299. }
  300. .text-disabled {
  301. color: #bbbbbb;
  302. }
  303. .item-icon {
  304. color: $dark-9;
  305. }
  306. .remark-input {
  307. text-align: right;
  308. }
  309. .item-placeholder {
  310. color: $dark-9;
  311. font-size: 26rpx;
  312. text-align: right;
  313. }
  314. }
  315. .total-box-footer {
  316. height: 90rpx;
  317. .total-num {
  318. color: #333333;
  319. font-family: OPPOSANS;
  320. }
  321. }
  322. .footer-box {
  323. height: 100rpx;
  324. .submit-btn {
  325. width: 240rpx;
  326. height: 70rpx;
  327. font-size: 28rpx;
  328. font-weight: 500;
  329. .goto-pay-text {
  330. line-height: 28rpx;
  331. }
  332. }
  333. .cancel-btn {
  334. width: 240rpx;
  335. height: 80rpx;
  336. font-size: 26rpx;
  337. background-color: #e5e5e5;
  338. color: $dark-9;
  339. }
  340. }
  341. .title {
  342. font-size: 36rpx;
  343. font-weight: bold;
  344. color: #333333;
  345. }
  346. .subtitle {
  347. font-size: 28rpx;
  348. color: #999999;
  349. }
  350. .cicon-checkbox {
  351. font-size: 36rpx;
  352. color: var(--ui-BG-Main);
  353. }
  354. .cicon-box {
  355. font-size: 36rpx;
  356. color: #999999;
  357. }
  358. </style>