confirm.vue 16 KB

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