confirm.vue 16 KB

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