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. if(state.usedPoint > state.currentMemberPoints){
  266. sheep.$helper.toast('可用数字权益不足');
  267. return;
  268. }
  269. submitOrder();
  270. }
  271. // 创建订单&跳转
  272. async function submitOrder() {
  273. // 处理每个店铺的留言 以{店铺id:留言}的形式返回
  274. const shops = shopsByNames.value;
  275. const shopRemarks = {};
  276. Object.keys(shops).forEach(shopName => {
  277. const shop = shops[shopName];
  278. shopRemarks[shop.shopId] = shop.remark;
  279. });
  280. const {
  281. code,
  282. data
  283. } = await OrderApi.createOrder({
  284. items: state.orderPayload.items,
  285. couponId: state.orderPayload.couponId,
  286. addressId: state.addressInfo.id,
  287. deliveryType: state.orderPayload.spuType == 1 ? 1 : 3, // TODO 非繁人:需要支持【门店自提】
  288. pointStatus: false, // TODO 非繁人:需要支持【数字权益选择】
  289. combinationActivityId: state.orderPayload.combinationActivityId,
  290. combinationHeadId: state.orderPayload.combinationHeadId,
  291. seckillActivityId: state.orderPayload.seckillActivityId,
  292. payIntegral: state.usedPoint,
  293. shopRemarks: shopRemarks
  294. });
  295. if (code !== 0) {
  296. return;
  297. }
  298. // 更新购物车列表,如果来自购物车
  299. if (state.orderPayload.items[0].cartId > 0) {
  300. sheep.$store('cart').getList();
  301. }
  302. // 跳转到支付页面
  303. sheep.$router.redirect('/pages/pay/index', {
  304. id: data.payOrderId,
  305. });
  306. }
  307. // 检查库存 & 计算订单价格
  308. async function getOrderInfo() {
  309. // 每次查询设置订单之前 看有没有评论 如果有评论就存到shopRemarks
  310. const shops = shopsByNames.value
  311. let shopRemarks = {};
  312. if (Object.keys(shops).length !== 0) {
  313. Object.keys(shops).forEach(shopName => {
  314. const shop = shops[shopName];
  315. shopRemarks[shopName] = shop.remark;
  316. });
  317. }
  318. const {
  319. data,
  320. code
  321. } = await OrderApi.settlementOrder({
  322. items: state.orderPayload.items,
  323. couponId: state.orderPayload.couponId,
  324. addressId: state.addressInfo.id,
  325. deliveryType: state.orderPayload.spuType == 1 ? 1 : 3, // TODO 非繁人:需要支持【门店自提】
  326. pointStatus: false, // TODO 非繁人:需要支持【数字权益选择】
  327. combinationActivityId: state.orderPayload.combinationActivityId,
  328. combinationHeadId: state.orderPayload.combinationHeadId,
  329. seckillActivityId: state.orderPayload.seckillActivityId,
  330. usedPoint: state.usedPoint,
  331. addressType:state.orderPayload.spuType == 1 ? 1 : 2 //如果是虚拟产品
  332. });
  333. if (code !== 0) {
  334. return;
  335. }
  336. state.orderInfo = data;
  337. // 如果shopRemarks有评论的话 就放回shopsByNames
  338. if (Object.keys(shopRemarks).length !== 0) {
  339. Object.keys(shopRemarks).forEach(shopName => {
  340. shopsByNames.value[shopName].remark = shopRemarks[shopName]
  341. });
  342. }
  343. // 设置收货地址
  344. if (state.orderInfo.address) {
  345. state.addressInfo = state.orderInfo.address;
  346. }
  347. state.currentMemberPoints = points2point(state.orderInfo.currentQuota)
  348. state.currentTotalPrice = fen2yuan(state.orderInfo.price.payPrice)
  349. state.currentDeliveryPrice = fen2yuan(state.orderInfo.price.deliveryPrice)
  350. // console.log("父",state.currentTotalPrice)
  351. if(state.orderPayload.spuPayType == 2){
  352. state.usedPoint = state.currentTotalPrice - 0.01
  353. console.log(state.spuType)
  354. }
  355. }
  356. // 获取可用优惠券
  357. // async function getCoupons() {
  358. // const {
  359. // code,
  360. // data
  361. // } = await CouponApi.getMatchCouponList(
  362. // state.orderInfo.price.payPrice,
  363. // state.orderInfo.items.map((item) => item.spuId),
  364. // state.orderPayload.items.map((item) => item.skuId),
  365. // state.orderPayload.items.map((item) => item.categoryId),
  366. // );
  367. // if (code === 0) {
  368. // state.couponInfo = data;
  369. // }
  370. // }
  371. onLoad(async (options) => {
  372. if (!options.data) {
  373. sheep.$helper.toast('参数不正确,请检查!');
  374. return;
  375. }
  376. state.orderPayload = JSON.parse(options.data);
  377. await getOrderInfo();
  378. });
  379. </script>
  380. <style lang="scss" scoped>
  381. :deep() {
  382. .uni-input-wrapper {
  383. width: 320rpx;
  384. }
  385. .uni-easyinput__content-input {
  386. font-size: 28rpx;
  387. height: 72rpx;
  388. text-align: right !important;
  389. padding-right: 0 !important;
  390. .uni-input-input {
  391. font-weight: 500;
  392. color: #333333;
  393. font-size: 26rpx;
  394. height: 32rpx;
  395. margin-top: 4rpx;
  396. }
  397. }
  398. .uni-easyinput__content {
  399. display: flex !important;
  400. align-items: center !important;
  401. justify-content: right !important;
  402. }
  403. }
  404. .order-card-box,
  405. .address-box,
  406. .total-card-box {
  407. background: white;
  408. margin: 20rpx;
  409. border-radius: 20rpx;
  410. }
  411. .title-text {
  412. font-size: 30rpx;
  413. font-weight: bold;
  414. line-height: 42rpx;
  415. }
  416. .score-img {
  417. width: 36rpx;
  418. height: 36rpx;
  419. margin: 0 4rpx;
  420. }
  421. .order-item {
  422. height: 80rpx;
  423. .item-title {
  424. font-size: 28rpx;
  425. font-weight: 400;
  426. }
  427. .item-value {
  428. font-size: 28rpx;
  429. font-weight: 500;
  430. font-family: OPPOSANS;
  431. }
  432. .text-disabled {
  433. color: #bbbbbb;
  434. }
  435. .item-icon {
  436. color: $dark-9;
  437. }
  438. .remark-input {
  439. text-align: right;
  440. }
  441. .item-placeholder {
  442. color: $dark-9;
  443. font-size: 26rpx;
  444. text-align: right;
  445. }
  446. }
  447. .total-box-footer {
  448. height: 90rpx;
  449. .total-num {
  450. color: #333333;
  451. font-family: OPPOSANS;
  452. }
  453. }
  454. .footer-box {
  455. height: 100rpx;
  456. .submit-btn {
  457. width: 230rpx;
  458. height: 70rpx;
  459. font-size: 28rpx;
  460. font-weight: 500;
  461. .goto-pay-text {
  462. line-height: 28rpx;
  463. }
  464. }
  465. .cancel-btn {
  466. width: 230rpx;
  467. height: 80rpx;
  468. font-size: 26rpx;
  469. background-color: #e5e5e5;
  470. color: $dark-9;
  471. }
  472. }
  473. .title {
  474. font-size: 36rpx;
  475. font-weight: bold;
  476. color: #333333;
  477. }
  478. .subtitle {
  479. font-size: 28rpx;
  480. color: #999999;
  481. }
  482. .cicon-checkbox {
  483. font-size: 36rpx;
  484. color: var(--ui-BG-Main);
  485. }
  486. .cicon-box {
  487. font-size: 36rpx;
  488. color: #999999;
  489. }
  490. </style>