confirm.vue 13 KB

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