confirm.vue 14 KB

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