cart.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter jbetween">
  4. <view class="hflex acenter">
  5. <u-icon name="map-fill" color="#555555" size="13"></u-icon>
  6. <view class="top_text">{{city}}</view>
  7. </view>
  8. <view class="top_text" @click="manager">{{is_manager == 0?'管理':'取消'}}</view>
  9. </view>
  10. <view class="center">
  11. <block v-for="(item,index) in pageList" :key="index">
  12. <view class="box vflex">
  13. <view class="hflex acenter jbetween cell">
  14. <view class="hflex acenter">
  15. <u-checkbox-group placement="column" @change="checkboxAll(index)">
  16. <u-checkbox :value="all" :checked="isAllSelected" shape="circle"></u-checkbox>
  17. </u-checkbox-group>
  18. <view class="title">{{item.nickname}}</view>
  19. </view>
  20. <view class="right_btn" @click="toShop(item.id)">进店看看</view>
  21. </view>
  22. <block v-for="(item2,index2) in item.goods_item" :key="index2">
  23. <u-checkbox-group placement="column" @change="checkboxChange(index,index2)">
  24. <u-swipe-action>
  25. <u-swipe-action-item :options="options2" @click="deleteCart(index,index2)">
  26. <view class="hflex acenter cell">
  27. <u-checkbox v-model="item2.id" :value="item2.id" :checked="item2.checked" shape="circle"></u-checkbox>
  28. <image :src="item2.cover" mode="aspectFill" class="img"></image>
  29. <view class="vflex img_right">
  30. <view class="item_name">{{item2.name}}</view>
  31. <view class="norm">{{item2.goods_spec}}</view>
  32. <view class="hflex acenter jbetween">
  33. <view class="text_red">¥{{item2.price_selling}}</view>
  34. <u-number-box buttonSize="25" :integer="true" :name="item2.id" v-model="item2.num" @change="valChange"></u-number-box>
  35. </view>
  36. </view>
  37. </view>
  38. </u-swipe-action-item>
  39. </u-swipe-action>
  40. </u-checkbox-group>
  41. </block>
  42. </view>
  43. </block>
  44. </view>
  45. <view class="bottom hflex acenter jbetween">
  46. <view>
  47. <u-checkbox-group placement="column" @change="checkboxAll2">
  48. <u-checkbox :value="all" :checked="isAllSelected" shape="circle" label="全选"></u-checkbox>
  49. </u-checkbox-group>
  50. </view>
  51. <view class="hflex aend" v-if="is_manager == 0">
  52. <view class="bottom_num">已选{{num?num:0}}件</view>
  53. <view class="bottom_total hflex acenter jcenter">合计:<span class="text-blue">¥{{total}}</span></view>
  54. <view class="btn" @click="buy">一键结算</view>
  55. </view>
  56. <view class="hflex aend" v-if="is_manager == 1">
  57. <view class="btn2" @click="batchDelete">删除</view>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. import $api from '@/static/js/api.js'
  64. var that = ''
  65. export default {
  66. data() {
  67. return {
  68. is_manager: 0,
  69. city: '北京市',
  70. pageList: [
  71. ],
  72. num: 0,
  73. total: 0,
  74. isAllSelected: false,
  75. options2: [{
  76. text: '删除'
  77. }]
  78. }
  79. },
  80. onLoad() {
  81. that = this
  82. var city = uni.getStorageSync('city')
  83. if(city) {
  84. that.city = city
  85. }
  86. that.getCart()
  87. },
  88. methods: {
  89. // 获取购物车列表
  90. getCart() {
  91. $api.req({
  92. url: '/data/api.Goods/goods_cart_list'
  93. }, function(res) {
  94. console.log(res);
  95. that.pageList = res.data.list
  96. })
  97. },
  98. // 管理
  99. manager() {
  100. if(that.is_manager == 0) {
  101. that.is_manager = 1
  102. } else {
  103. that.is_manager = 0
  104. }
  105. },
  106. // 单个店铺全选
  107. checkboxAll(index) {
  108. // console.log(e);
  109. that.pageList[index].isAllSelected = !that.pageList[index].isAllSelected
  110. if(that.pageList[index].isAllSelected) {
  111. for(var i = 0;i<that.pageList[index].goods_item.length;i++) {
  112. that.$set(that.pageList[index].goods_item[i],'checked',true)
  113. // that.pageList[index].isAllSelected = true
  114. }
  115. } else {
  116. for(var i = 0;i<that.pageList[index].goods_item.length;i++) {
  117. that.$set(that.pageList[index].goods_item[i],'checked',false)
  118. // that.pageList[index].isAllSelected = false
  119. }
  120. }
  121. that.totalGood()
  122. },
  123. // 选择单个商品
  124. checkboxChange(index,index2) {
  125. if(that.pageList[index].goods_item[index2].checked) {
  126. that.pageList[index].goods_item[index2].checked = !that.pageList[index].goods_item[index2].checked
  127. } else {
  128. that.$set(that.pageList[index].goods_item[index2],'checked',true)
  129. }
  130. that.totalGood()
  131. },
  132. // 选择所有商品
  133. checkboxAll2() {
  134. that.isAllSelected = !that.isAllSelected
  135. if(that.isAllSelected) {
  136. for(var i = 0;i<that.pageList.length;i++) {
  137. that.pageList[i].isAllSelected = true
  138. for (var j=0;j<that.pageList[i].goods_item.length;j++) {
  139. that.$set(that.pageList[i].goods_item[j],'checked',true)
  140. }
  141. }
  142. } else {
  143. for(var i = 0;i<that.pageList.length;i++) {
  144. that.pageList[i].isAllSelected = false
  145. for (var j=0;j<that.pageList[i].goods_item.length;j++) {
  146. that.$set(that.pageList[i].goods_item[j],'checked',false)
  147. }
  148. }
  149. that.num = 0
  150. that.total = 0
  151. }
  152. that.totalGood()
  153. },
  154. // 进店看看
  155. toShop(id) {
  156. $api.jump('/page_shop/pages/good/shop?id=' + id)
  157. },
  158. // 计算选择数量和价格
  159. totalGood() {
  160. var total = 0
  161. that.total = 0
  162. that.num = 0
  163. var num = 0
  164. for(var i = 0;i<that.pageList.length;i++) {
  165. for (var j=0;j<that.pageList[i].goods_item.length;j++) {
  166. if(that.pageList[i].goods_item[j].checked) {
  167. num += that.pageList[i].goods_item[j].num
  168. total += that.pageList[i].goods_item[j].num * Number(that.pageList[i].goods_item[j].price_selling)
  169. that.total = total.toFixed(2)
  170. that.num = num
  171. }
  172. }
  173. }
  174. },
  175. // 数量
  176. valChange(e) {
  177. console.log(e.name);
  178. $api.req({
  179. url: '/data/api.Goods/goods_cart_save',
  180. data: {
  181. cart_id: e.name,
  182. num: e.value
  183. }
  184. }, function(res) {
  185. if(res.code == 1) {
  186. $api.info(res.info)
  187. // that.getCart()
  188. that.totalGood()
  189. }
  190. })
  191. },
  192. // 删除
  193. deleteCart(index,index2) {
  194. $api.req({
  195. url: '/data/api.Goods/goods_cart_del',
  196. data: {
  197. cart_ids: that.pageList[index].goods_item[index2].id
  198. }
  199. }, function(res) {
  200. if(res.code == 1) {
  201. $api.info(res.info)
  202. that.getCart()
  203. }
  204. })
  205. },
  206. batchDelete() {
  207. var cart_ids = []
  208. for(var i = 0;i<that.pageList.length;i++) {
  209. for (var j=0;j<that.pageList[i].goods_item.length;j++) {
  210. if(that.pageList[i].goods_item[j].checked) {
  211. cart_ids.push(that.pageList[i].goods_item[j].id)
  212. }
  213. }
  214. }
  215. cart_ids = cart_ids.toString()
  216. $api.req({
  217. url: '/data/api.Goods/goods_cart_del',
  218. data: {
  219. cart_ids: cart_ids
  220. }
  221. }, function(res) {
  222. if(res.code == 1) {
  223. $api.info(res.info)
  224. that.getCart()
  225. }
  226. })
  227. },
  228. buy() {
  229. var cart_ids = []
  230. for(var i = 0;i<that.pageList.length;i++) {
  231. for (var j=0;j<that.pageList[i].goods_item.length;j++) {
  232. if(that.pageList[i].goods_item[j].checked) {
  233. cart_ids.push(that.pageList[i].goods_item[j].id)
  234. }
  235. }
  236. }
  237. cart_ids = cart_ids.toString()
  238. $api.req({
  239. url: '/data/api.Order/crat_create',
  240. method: 'POST',
  241. data: {
  242. cart_ids: cart_ids,
  243. address_id: uni.getStorageSync('address_id')?uni.getStorageSync('address_id'): '',
  244. }
  245. }, function(res) {
  246. if(res.code == 1) {
  247. $api.info(res.info)
  248. }
  249. })
  250. }
  251. },
  252. }
  253. </script>
  254. <style lang="scss" scoped>
  255. .content::v-deep {
  256. background: #F5F5F5;
  257. .top {
  258. width: 100%;
  259. height: 80rpx;
  260. background: #FFFFFF;
  261. box-sizing: border-box;
  262. padding: 20rpx 30rpx;
  263. .top_text {
  264. font-size: 28rpx;
  265. font-weight: 400;
  266. color: #555555;
  267. line-height: 40rpx;
  268. padding-left: 6rpx;
  269. }
  270. }
  271. .center {
  272. width: 100%;
  273. box-sizing: border-box;
  274. padding: 0 30rpx;
  275. margin-bottom: 186rpx;
  276. .box {
  277. width: 100%;
  278. background: #FFFFFF;
  279. border-radius: 14px;
  280. margin-top: 20rpx;
  281. box-sizing: border-box;
  282. padding: 10rpx 20rpx;
  283. .cell {
  284. padding: 10rpx 0;
  285. }
  286. .title {
  287. font-size: 30rpx;
  288. font-weight: 500;
  289. color: #222222;
  290. line-height: 42rpx;
  291. }
  292. .right_btn {
  293. width: 112rpx;
  294. height: 36rpx;
  295. background: #EDF0FF;
  296. border-radius: 18rpx;
  297. text-align: center;
  298. font-size: 20rpx;
  299. font-weight: 400;
  300. color: #506DFF;
  301. line-height: 36rpx;
  302. }
  303. .img {
  304. width: 128rpx;
  305. height: 128rpx;
  306. border-radius: 12rpx;
  307. margin: 0 20rpx 0 16rpx;
  308. }
  309. .img_right {
  310. width: calc(100% - 188rpx);
  311. }
  312. .item_name {
  313. font-size: 28rpx;
  314. font-weight: 400;
  315. color: #222222;
  316. line-height: 40rpx;
  317. // padding-bottom: 32rpx;
  318. }
  319. .norm {
  320. margin: 12rpx 0;
  321. background: #F5F5F5;
  322. border-radius: 2px;
  323. box-sizing: border-box;
  324. padding: 8rpx 24rpx 8rpx 12rpx;
  325. font-size: 20rpx;
  326. font-weight: 400;
  327. color: #888888;
  328. line-height: 28rpx;
  329. }
  330. .text_red {
  331. font-size: 28rpx;
  332. font-weight: bold;
  333. color: #FF4747;
  334. line-height: 32rpx;
  335. }
  336. .u-number-box {
  337. // width: 152rpx;
  338. // height: 40rpx !important;
  339. .input {
  340. // min-height: 40rpx !important;
  341. }
  342. .u-number-box__minus {
  343. border-radius: 20rpx 0 0 20rpx;
  344. }
  345. .u-number-box__input {
  346. margin: 0 !important;
  347. min-height: 40rpx !important;
  348. }
  349. .u-number-box__plus {
  350. border-radius: 0 20rpx 20rpx 0;
  351. }
  352. }
  353. }
  354. }
  355. .bottom {
  356. width: 100%;
  357. z-index: 9999;
  358. position: fixed;
  359. bottom: 0;
  360. height: 166rpx;
  361. background: #FFFFFF;
  362. box-sizing: border-box;
  363. padding: 8rpx 30rpx 74rpx;
  364. .bottom_num {
  365. font-size: 20rpx;
  366. font-weight: 400;
  367. color: #939393;
  368. line-height: 34rpx;
  369. padding-bottom: 16rpx;
  370. }
  371. .bottom_total {
  372. font-size: 24rpx;
  373. font-weight: 400;
  374. color: #222222;
  375. line-height: 34rpx;
  376. padding-bottom: 16rpx;
  377. }
  378. .text-blue {
  379. font-size: 34rpx;
  380. font-weight: 400;
  381. color: #5270FF;
  382. }
  383. .btn {
  384. width: 232rpx;
  385. height: 88rpx;
  386. background: #506DFF;
  387. border-radius: 44rpx;
  388. font-size: 36rpx;
  389. font-weight: 500;
  390. color: #FFFFFF;
  391. line-height: 88rpx;
  392. text-align: center;
  393. }
  394. .btn2 {
  395. width: 200rpx;
  396. height: 80rpx;
  397. border-radius: 44rpx;
  398. border: 1px solid #506DFF;
  399. font-size: 36rpx;
  400. font-weight: 500;
  401. color: #506DFF;
  402. line-height: 80rpx;
  403. text-align: center;
  404. }
  405. }
  406. .u-page {
  407. padding: 0;
  408. }
  409. .u-demo-block__title {
  410. padding: 10px 0 2px 15px;
  411. }
  412. .swipe-action {
  413. &__content {
  414. padding: 25rpx 0;
  415. &__text {
  416. font-size: 15px;
  417. color: $u-main-color;
  418. padding-left: 30rpx;
  419. }
  420. }
  421. }
  422. .u-swipe-action-item__right__button__wrapper {
  423. background-color: #FF4C4C !important;
  424. }
  425. .u-swipe-action-item__right {
  426. width: 114rpx;
  427. height: 128rpx;
  428. margin: 0 0 30rpx;
  429. }
  430. }
  431. </style>