cart.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <s-layout title="购物车" tabbar="/pages/index/cart" :bgStyle="{ color: '#fff' }">
  3. <s-empty v-if="state.list.length === 0" text="购物车空空如也,快去逛逛吧~" icon="/static/cart-empty.png" />
  4. <!-- 头部 -->
  5. <view class="cart-box ss-flex ss-flex-col ss-row-between" v-if="state.list.length">
  6. <view class="cart-header ss-flex ss-col-center ss-row-between ss-p-x-30">
  7. <view class="header-left ss-flex ss-col-center ss-font-26">
  8. <text class="goods-number ui-TC-Main ss-flex">{{ state.list.length }}</text>
  9. 件商品
  10. </view>
  11. <view class="header-right">
  12. <button v-if="state.editMode" class="ss-reset-button" @tap="state.editMode = false">
  13. 取消
  14. </button>
  15. <button v-else class="ss-reset-button ui-TC-Main" @tap="state.editMode = true">
  16. 编辑
  17. </button>
  18. </view>
  19. </view>
  20. <!-- 内容 -->
  21. <view class="cart-content ss-flex-1 ss-p-x-30 ss-m-b-40">
  22. <view class="goods-box ss-r-10 ss-m-b-14" v-for="item in state.list" :key="item.id">
  23. <view class="ss-flex ss-col-center">
  24. <label class="check-box ss-flex ss-col-center ss-p-l-10" @tap="onSelectSingle(item.id)">
  25. <radio :checked="state.selectedIds.includes(item.id)" color="var(--ui-BG-Main)"
  26. style="transform: scale(0.8)" @tap.stop="onSelectSingle(item.id)" />
  27. </label>
  28. <s-goods-item :title="item.spu.name" :img="item.spu.picUrl || item.goods.image"
  29. :price="item.sku.price"
  30. :skuText="item.sku.properties.length>1? item.sku.properties.reduce((items2,items)=>items2.valueName+' '+items.valueName):item.sku.properties[0].valueName"
  31. priceColor="#FF3000" :titleWidth="400">
  32. <template v-if="!state.editMode" v-slot:tool>
  33. <su-number-box :min="0" :max="item.sku.stock" :step="1" v-model="item.count" @change="onNumberChange($event, item)" />
  34. </template>
  35. </s-goods-item>
  36. </view>
  37. </view>
  38. </view>
  39. <!-- 底部 -->
  40. <su-fixed bottom :val="48" placeholder v-if="state.list.length > 0" :isInset="false">
  41. <view class="cart-footer ss-flex ss-col-center ss-row-between ss-p-x-30 border-bottom">
  42. <view class="footer-left ss-flex ss-col-center">
  43. <label class="check-box ss-flex ss-col-center ss-p-r-30" @tap="onSelectAll">
  44. <radio :checked="state.isAllSelected" color="var(--ui-BG-Main)"
  45. style="transform: scale(0.8)" @tap.stop="onSelectAll" />
  46. <view class="ss-m-l-8"> 全选 </view>
  47. </label>
  48. <text>合计:</text>
  49. <view class="text-price price-text">
  50. {{ fen2yuan(state.totalPriceSelected) }}
  51. </view>
  52. </view>
  53. <view class="footer-right">
  54. <button v-if="state.editMode" class="ss-reset-button ui-BG-Main-Gradient pay-btn ui-Shadow-Main"
  55. @tap="onDelete">
  56. 删除
  57. </button>
  58. <button v-else class="ss-reset-button ui-BG-Main-Gradient pay-btn ui-Shadow-Main"
  59. @tap="onConfirm">
  60. 去结算
  61. {{ state.selectedIds?.length ? `(${state.selectedIds.length})` : '' }}
  62. </button>
  63. </view>
  64. </view>
  65. </su-fixed>
  66. </view>
  67. </s-layout>
  68. </template>
  69. <script setup>
  70. import sheep from '@/sheep';
  71. import { computed, reactive } from 'vue';
  72. import { fen2yuan } from '../../sheep/hooks/useGoods';
  73. const sys_navBar = sheep.$platform.navbar;
  74. const cart = sheep.$store('cart');
  75. const state = reactive({
  76. editMode: false,
  77. list: computed(() => cart.list),
  78. selectedList: [],
  79. selectedIds: computed(() => cart.selectedIds),
  80. isAllSelected: computed(() => cart.isAllSelected),
  81. totalPriceSelected: computed(() => cart.totalPriceSelected),
  82. });
  83. // 单选选中
  84. function onSelectSingle(id) {
  85. cart.selectSingle(id);
  86. }
  87. // 全选
  88. function onSelectAll() {
  89. cart.selectAll(!state.isAllSelected);
  90. }
  91. // 结算
  92. function onConfirm() {
  93. let items = []
  94. let goods_list = [];
  95. state.selectedList = state.list.filter((item) => state.selectedIds.includes(item.id));
  96. state.selectedList.map((item) => {
  97. // 此处前端做出修改
  98. items.push({
  99. skuId: item.sku.id,
  100. count: item.count,
  101. cartId: item.id,
  102. })
  103. goods_list.push({
  104. // goods_id: item.goods_id,
  105. goods_id: item.spu.id,
  106. // goods_num: item.goods_num,
  107. goods_num: item.count,
  108. // 商品价格id真没有
  109. // goods_sku_price_id: item.goods_sku_price_id,
  110. });
  111. });
  112. // return;
  113. if (goods_list.length === 0) {
  114. sheep.$helper.toast('请选择商品');
  115. return;
  116. }
  117. sheep.$router.go('/pages/order/confirm', {
  118. data: JSON.stringify({
  119. // order_type: 'goods',
  120. // goods_list,
  121. items,
  122. // from: 'cart',
  123. deliveryType: 1,
  124. pointStatus: false,
  125. }),
  126. });
  127. }
  128. function onNumberChange(e, cartItem) {
  129. if (e === 0) {
  130. cart.delete(cartItem.id);
  131. return;
  132. }
  133. if (cartItem.goods_num === e) return;
  134. cartItem.goods_num = e;
  135. cart.update({
  136. goods_id: cartItem.id,
  137. goods_num: e,
  138. goods_sku_price_id: cartItem.goods_sku_price_id,
  139. });
  140. }
  141. async function onDelete() {
  142. cart.delete(state.selectedIds);
  143. }
  144. </script>
  145. <style lang="scss" scoped>
  146. :deep(.ui-fixed) {
  147. height: 72rpx;
  148. }
  149. .cart-box {
  150. width: 100%;
  151. .cart-header {
  152. height: 70rpx;
  153. background-color: #f6f6f6;
  154. width: 100%;
  155. position: fixed;
  156. left: 0;
  157. top: v-bind('sys_navBar') rpx;
  158. z-index: 1000;
  159. box-sizing: border-box;
  160. }
  161. .cart-footer {
  162. height: 100rpx;
  163. background-color: #fff;
  164. .pay-btn {
  165. width: 180rpx;
  166. height: 70rpx;
  167. font-size: 28rpx;
  168. line-height: 28rpx;
  169. font-weight: 500;
  170. border-radius: 40rpx;
  171. }
  172. }
  173. .cart-content {
  174. margin-top: 70rpx;
  175. .goods-box {
  176. background-color: #fff;
  177. }
  178. }
  179. }
  180. </style>