cart.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <!-- 购物车 -->
  2. <template>
  3. <view class="page_box">
  4. <!-- 总数 -->
  5. <view class="head_box" v-show="!isEmpty">
  6. <view class="tool-box u-flex u-row-between">
  7. <view class="count-box">
  8. <text class="all-num">{{ cartList.length }}</text>
  9. 件商品
  10. </view>
  11. <button class="u-reset-button set-btn" @tap="isTool = !isTool">{{ isTool ? '完成' : '编辑' }}</button>
  12. </view>
  13. </view>
  14. <view class="content_box">
  15. <!-- 列表 -->
  16. <u-checkbox-group @change="checkboxGroupChange" activeColor="#e9b461" v-if="!isEmpty">
  17. <view class="collect-list u-flex u-row-left u-col-center" v-for="(g, index) in cartList" :key="index">
  18. <u-checkbox class="u-p-l-10" :name="g.goods_id" shape="circle" v-model="g.checked">
  19. <view style="height: 160rpx"></view>
  20. </u-checkbox>
  21. <view class="goods-wrap">
  22. <view class="lose-box"
  23. v-if="g.cart_type === 'invalid' || (g.cart_type === 'activity' && !isActivityPay)">
  24. <text v-if="g.cart_type === 'invalid'" class="iconfont icon-yishixiao"></text>
  25. <view v-if="g.cart_type === 'activity' && !isActivityPay"
  26. class="invalid-tips u-flex u-row-center u-col-center">活动商品,仅支持单独购买</view>
  27. </view>
  28. <shopro-mini-card :image="g.goods.image" :title="g.goods.title"
  29. @click="$Router.push({ path: '/pages/goods/detail', query: { id: g.goods.id } })">
  30. <template #describe>
  31. <view class="order-sku u-ellipsis-1">
  32. <text
  33. class="order-num">{{ g.sku_price && g.sku_price.goods_sku_text ? g.sku_price.goods_sku_text : '' }}</text>
  34. </view>
  35. </template>
  36. <template #cardBottom>
  37. <view class="order-price-box u-flex u-row-between" @tap.stop>
  38. <text
  39. class="order-price font-OPPOSANS">¥{{ g.sku_price ? g.sku_price.price : 0 }}</text>
  40. <u-number-box :value="g.goods_num" :long-press="false" :min="0" :step="1"
  41. :index="index" :max="!g.sku_price ? 0: (g.sku_price.stock > 999 ? 999 : g.sku_price.stock)" @min="onMin(g)"
  42. @minus="changeNum($event, g)" @plus="changeNum($event, g)"
  43. @change="changeNum($event, g)">
  44. </u-number-box>
  45. </view>
  46. </template>
  47. </shopro-mini-card>
  48. </view>
  49. </view>
  50. </u-checkbox-group>
  51. <!-- 数据为空 -->
  52. <shopro-empty v-if="isEmpty" :image="$IMG_URL + '/imgs/empty/empty_cart.png'" tipText="购物车空空如也,快去逛逛吧~">
  53. </shopro-empty>
  54. </view>
  55. <!-- 底部按钮 -->
  56. <view class="foot_box " v-show="!isEmpty">
  57. <view class="tools-box u-flex u-row-between">
  58. <u-checkbox @change="onAllSel" activeColor="#e9b461" shape="circle" :value="allSelected">
  59. 全选({{ totalCount.totalNum }})</u-checkbox>
  60. <view class="u-flex">
  61. <view class="price font-OPPOSANS" v-show="!isTool">¥{{ totalCount.totalPrice.toFixed(2) }}</view>
  62. <button class="u-reset-button pay-btn" :disabled="!isSel" v-show="!isTool" @tap="onPay">结算</button>
  63. <button class="u-reset-button del-btn" v-show="isTool" @tap="goodsDelete">删除</button>
  64. </view>
  65. </view>
  66. </view>
  67. <!-- <shopro-tabbar></shopro-tabbar> -->
  68. </view>
  69. </template>
  70. <script>
  71. import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
  72. let timer = null;
  73. export default {
  74. components: {},
  75. data() {
  76. return {
  77. maxStep: 999,
  78. isTool: false
  79. };
  80. },
  81. computed: {
  82. ...mapGetters(['totalCount', 'isSel', 'isActivityPay', 'cartList', 'allSelected', 'authType', 'isLogin']),
  83. isEmpty() {
  84. return !this.cartList.length;
  85. }
  86. },
  87. onShow() {
  88. this.isLogin && this.getCartList();
  89. },
  90. onHide() {
  91. this.isTool = false;
  92. },
  93. methods: {
  94. ...mapActions(['getCartList', 'changeCartList']),
  95. // 到达最小值
  96. onMin(g) {
  97. uni.showModal({
  98. title: '删除提示',
  99. confirmColor: '#f0c785',
  100. content: `是否确认从购物车中删除此商品?`,
  101. success: res => {
  102. res.confirm && this.changeCartList({ ids: [g.id], art: 'delete' });
  103. }
  104. });
  105. },
  106. // 更改商品数
  107. async changeNum(e, g) {
  108. uni.showLoading({
  109. mask: true
  110. });
  111. e.value > 0 && this.changeCartList({ ids: [g.id], goodsNum: e.value, art: 'change' });
  112. uni.hideLoading();
  113. await this.getCartList();
  114. },
  115. // 单选
  116. checkboxGroupChange(e) {
  117. this.$store.commit('checkCartList');
  118. },
  119. // 路由跳转
  120. jump(path, parmas) {
  121. this.$Router.push({
  122. path: path,
  123. query: parmas
  124. });
  125. },
  126. // 全选
  127. onAllSel() {
  128. let that = this;
  129. that.$store.commit('changeAllSellect'); //按钮切换全选。
  130. that.$store.commit('getAllSellectCartList', that.allSelected); //列表全选
  131. },
  132. // 结算
  133. onPay() {
  134. let that = this;
  135. let { cartList } = this;
  136. if (this.isSel) {
  137. let confirmcartList = [];
  138. let isActivity = false;
  139. for (let item of this.cartList) {
  140. if (item.checked) {
  141. if (item.cart_type === 'invalid') {
  142. this.$u.toast('商品已失效');
  143. return false;
  144. }
  145. if (item.cart_type === 'activity') {
  146. isActivity = true;
  147. }
  148. confirmcartList.push({
  149. goods_id: item.goods_id,
  150. sku_price_id: item.sku_price_id,
  151. goods_price: item.sku_price ? item.sku_price.price : 0,
  152. goods_num: item.goods_num
  153. });
  154. }
  155. }
  156. if (confirmcartList.length > 1 && isActivity) {
  157. this.$u.toast('活动商品只能单独购买');
  158. return false;
  159. }
  160. that.jump('/pages/order/confirm', { goodsList: confirmcartList, from: 'cart' });
  161. }
  162. },
  163. // 删除
  164. goodsDelete() {
  165. let that = this;
  166. let { cartList } = this;
  167. let selectedIdsArray = [];
  168. cartList.map(item => {
  169. if (item.checked) {
  170. selectedIdsArray.push(item.id);
  171. }
  172. });
  173. this.changeCartList({ ids: selectedIdsArray, art: 'delete' });
  174. }
  175. }
  176. };
  177. </script>
  178. <style lang="scss">
  179. // 总计商品
  180. .head_box {
  181. .tool-box {
  182. height: 90rpx;
  183. padding: 0 30rpx;
  184. background: #f7f5f6;
  185. .count-box {
  186. font-size: 26rpx;
  187. color: #999;
  188. .all-num {
  189. color: #a8700d;
  190. }
  191. }
  192. .set-btn {
  193. background: none;
  194. font-size: 26rpx;
  195. color: #a8700d;
  196. }
  197. }
  198. }
  199. // 空白页
  200. .empty-box {
  201. flex: 1;
  202. width: 100%;
  203. height: 100%;
  204. }
  205. // 购物车项
  206. .collect-list {
  207. background: #fff;
  208. width: 750rpx;
  209. margin-bottom: 20rpx;
  210. padding: 20rpx 10rpx;
  211. // 商品卡片包裹
  212. .goods-wrap {
  213. position: relative;
  214. .order-sku {
  215. font-size: 24rpx;
  216. font-weight: 400;
  217. color: rgba(153, 153, 153, 1);
  218. width: 440rpx;
  219. margin-bottom: 20rpx;
  220. .order-num {
  221. margin-right: 10rpx;
  222. }
  223. }
  224. .order-price-box {
  225. .status-btn {
  226. height: 32rpx;
  227. border: 1rpx solid rgba(207, 169, 114, 1);
  228. border-radius: 15rpx;
  229. font-size: 20rpx;
  230. font-weight: 400;
  231. color: rgba(168, 112, 13, 1);
  232. padding: 0 10rpx;
  233. margin-left: 20rpx;
  234. background: rgba(233, 183, 102, 0.16);
  235. }
  236. .order-price {
  237. font-size: 26rpx;
  238. font-weight: 600;
  239. color: #ff0000;
  240. }
  241. }
  242. .lose-box {
  243. position: absolute;
  244. z-index: 10;
  245. width: 100%;
  246. height: 100%;
  247. background-color: rgba(#fff, 0.8);
  248. .icon-yishixiao {
  249. position: absolute;
  250. bottom: 0rpx;
  251. right: 80rpx;
  252. font-size: 140rpx;
  253. line-height: 140rpx;
  254. color: #dbdbdb;
  255. transform: rotate(-30deg);
  256. }
  257. .invalid-tips {
  258. position: absolute;
  259. top: 0;
  260. right: 0;
  261. left: 0;
  262. bottom: 0;
  263. margin: auto;
  264. width: 400rpx;
  265. height: 60rpx;
  266. border-radius: 30rpx;
  267. color: #fff;
  268. background-color: rgba(#000, 0.35);
  269. }
  270. }
  271. }
  272. .tag-box {
  273. .tag1 {
  274. line-height: 36rpx;
  275. padding: 0 8rpx;
  276. font-size: 18rpx;
  277. color: rgba(#fff, 0.9);
  278. background: #f39800;
  279. display: inline-block;
  280. box-sizing: border-box;
  281. }
  282. .tag2 {
  283. line-height: 34rpx;
  284. padding: 0 8rpx;
  285. font-size: 18rpx;
  286. color: rgba(#f39800, 0.9);
  287. background: #fff;
  288. border-top: 1rpx solid #f39800;
  289. border-right: 1rpx solid #f39800;
  290. border-bottom: 1rpx solid #f39800;
  291. display: inline-block;
  292. box-sizing: border-box;
  293. }
  294. }
  295. .price-box {
  296. width: 420rpx;
  297. .price {
  298. color: #e1212b;
  299. }
  300. }
  301. }
  302. .tools-box {
  303. height: 100rpx;
  304. width: 750rpx;
  305. padding: 0 20rpx;
  306. background: #fff;
  307. .check-all {
  308. font-size: 26rpx;
  309. .check-all-radio {
  310. transform: scale(0.7);
  311. color: #e9b564;
  312. }
  313. }
  314. .price {
  315. color: #ff0000;
  316. font-size: 500;
  317. margin-right: 30rpx;
  318. }
  319. .pay-btn {
  320. width: 200rpx;
  321. line-height: 70rpx;
  322. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  323. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  324. border-radius: 35rpx;
  325. padding: 0;
  326. color: rgba(#fff, 0.9);
  327. }
  328. .del-btn {
  329. width: 200rpx;
  330. line-height: 70rpx;
  331. background: linear-gradient(90deg, rgba(244, 71, 57, 1) 0%, rgba(255, 102, 0, 1) 100%);
  332. border-radius: 35rpx;
  333. padding: 0;
  334. color: rgba(#fff, 0.9);
  335. }
  336. }
  337. </style>