cart.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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" priceColor="#FF3000" :titleWidth="400">
  31. <template v-if="!state.editMode" v-slot:tool>
  32. <su-number-box :min="0" :max="item.sku.stock" :step="1" v-model="item.count"
  33. @change="onNumberChange($event, item)"></su-number-box>
  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 {
  72. computed,
  73. reactive,
  74. unref
  75. } from 'vue';
  76. import { fen2yuan } from '@/sheep/hooks/useGoods';
  77. const sys_navBar = sheep.$platform.navbar;
  78. const cart = sheep.$store('cart');
  79. const state = reactive({
  80. editMode: false,
  81. list: computed(() => cart.list),
  82. selectedList: [],
  83. selectedIds: computed(() => cart.selectedIds),
  84. isAllSelected: computed(() => cart.isAllSelected),
  85. totalPriceSelected: computed(() => cart.totalPriceSelected),
  86. });
  87. // 单选选中
  88. function onSelectSingle(id) {
  89. console.log('单选')
  90. cart.selectSingle(id);
  91. }
  92. // 全选
  93. function onSelectAll() {
  94. cart.selectAll(!state.isAllSelected);
  95. }
  96. // 结算
  97. function onConfirm() {
  98. let items = []
  99. let goods_list = [];
  100. state.selectedList = state.list.filter((item) => state.selectedIds.includes(item.id));
  101. state.selectedList.map((item) => {
  102. console.log(item, '便利');
  103. // 此处前端做出修改
  104. items.push({
  105. skuId: item.sku.id,
  106. count: item.count,
  107. cartId: item.id,
  108. })
  109. goods_list.push({
  110. // goods_id: item.goods_id,
  111. goods_id: item.spu.id,
  112. // goods_num: item.goods_num,
  113. goods_num: item.count,
  114. // 商品价格id真没有
  115. // goods_sku_price_id: item.goods_sku_price_id,
  116. });
  117. });
  118. // return;
  119. if (goods_list.length === 0) {
  120. sheep.$helper.toast('请选择商品');
  121. return;
  122. }
  123. sheep.$router.go('/pages/order/confirm', {
  124. data: JSON.stringify({
  125. // order_type: 'goods',
  126. // goods_list,
  127. items,
  128. // from: 'cart',
  129. deliveryType: 1,
  130. pointStatus: false,
  131. }),
  132. });
  133. }
  134. function onNumberChange(e, cartItem) {
  135. if (e === 0) {
  136. cart.delete(cartItem.id);
  137. return;
  138. }
  139. if (cartItem.goods_num === e) return;
  140. cartItem.goods_num = e;
  141. cart.update({
  142. goods_id: cartItem.id,
  143. goods_num: e,
  144. goods_sku_price_id: cartItem.goods_sku_price_id,
  145. });
  146. }
  147. async function onDelete() {
  148. cart.delete(state.selectedIds);
  149. }
  150. </script>
  151. <style lang="scss" scoped>
  152. :deep(.ui-fixed) {
  153. height: 72rpx;
  154. }
  155. .cart-box {
  156. width: 100%;
  157. .cart-header {
  158. height: 70rpx;
  159. background-color: #f6f6f6;
  160. width: 100%;
  161. position: fixed;
  162. left: 0;
  163. top: v-bind('sys_navBar') rpx;
  164. z-index: 1000;
  165. box-sizing: border-box;
  166. }
  167. .cart-footer {
  168. height: 100rpx;
  169. background-color: #fff;
  170. .pay-btn {
  171. width: 180rpx;
  172. height: 70rpx;
  173. font-size: 28rpx;
  174. line-height: 28rpx;
  175. font-weight: 500;
  176. border-radius: 40rpx;
  177. }
  178. }
  179. .cart-content {
  180. margin-top: 70rpx;
  181. .goods-box {
  182. background-color: #fff;
  183. }
  184. }
  185. }
  186. </style>