cart.vue 6.0 KB

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