order_addcart.vue 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489
  1. <template>
  2. <view class="order_addcart" :style="colorStyle">
  3. <view class="order_addcart-header-area">
  4. <view class="received" @click="goDetail(item)">
  5. <view class="pictrue">
  6. <image src='http://wine.gzzzyd.com/wx/order_addcart/qiandai.png'></image>
  7. </view>
  8. <view class="text-info">
  9. <view class="received-count">
  10. {{moneyObj.receiveItemAmount}}
  11. </view>
  12. <view class="received-info">
  13. 已领取红包
  14. </view>
  15. </view>
  16. </view>
  17. <view class="loss" @click="goDetail(item)">
  18. <view class="text-info">
  19. <view class="received-count">
  20. {{moneyObj.lossTotalAmount}}
  21. </view>
  22. <view class="received-info">
  23. 已错失红包
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="loop">
  29. <view class="loop-title">
  30. 当前红包池
  31. </view>
  32. <view class="loop-count">
  33. {{moneyObj.totalRemainItemAmount}}
  34. </view>
  35. </view>
  36. <view class="tab-area">
  37. <view @click="isactiveTab = 'todayRank';leaderboard()"
  38. :class="{'tab-area-active1':isactiveTab === 'todayRank','base-tab':true}">
  39. <text> 今日红包排行榜</text>
  40. </view>
  41. <view @click="isactiveTab = 'allRank';leaderboard()"
  42. :class="{'tab-area-active2':isactiveTab === 'allRank','base-tab':true}">
  43. <text> 红包领取总榜</text>
  44. </view>
  45. </view>
  46. <view class="rank-list">
  47. <view class="rank-list-item" v-for="(src, i) in rankList" :key="src.id">
  48. <img v-show="i===0" src='http://wine.gzzzyd.com/wx/order_addcart/rank1.png' alt="">
  49. <img v-show="i===1" src='http://wine.gzzzyd.com/wx/order_addcart/rank2.png' alt="">
  50. <img v-show="i===2" src='http://wine.gzzzyd.com/wx/order_addcart/rank3.png' alt="">
  51. <img v-show="i!==0 && i!==1 && i!==2" :src='src.avatar' alt="">
  52. <text class="nuber"> {{src.userName}}</text>
  53. <text class="mosaic"> {{src.phone}}</text>
  54. <text class="litem-info"> 共领取了</text>
  55. <text class="balance">{{src.totalAmount}}</text>
  56. </view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. // #ifdef APP-PLUS
  62. let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
  63. // #endif
  64. // #ifndef APP-PLUS
  65. let sysHeight = 0
  66. // #endif
  67. import {
  68. leaderboard,
  69. todayStatistics
  70. } from '@/api/home.js';
  71. import {
  72. getProductHot,
  73. collectAll,
  74. getProductDetail
  75. } from '@/api/store.js';
  76. import {
  77. toLogin
  78. } from '@/libs/login.js';
  79. import {
  80. mapGetters
  81. } from "vuex";
  82. import recommend from '@/components/recommend';
  83. import productWindow from '@/components/productWindow';
  84. // #ifdef MP
  85. import authorize from '@/components/Authorize';
  86. // #endif
  87. import pageFooter from '@/components/pageFooter/index.vue'
  88. import colors from "@/mixins/color";
  89. import {
  90. HTTP_REQUEST_URL
  91. } from '@/config/app';
  92. const hot_res = require('@/mock/json/hot_res.json')
  93. import {
  94. getNavigation
  95. } from '@/api/public.js'
  96. import {
  97. colorChange
  98. } from '../../api/api';
  99. export default {
  100. components: {
  101. pageFooter,
  102. recommend,
  103. productWindow,
  104. // #ifdef MP
  105. authorize
  106. // #endif
  107. },
  108. mixins: [colors],
  109. data() {
  110. return {
  111. isactiveTab: 'todayRank',
  112. moneyObj: {
  113. lossTotalAmount: "0",
  114. receiveItemAmount: "0",
  115. receiveItemCount: 0,
  116. redEnvelopeItemCount: 0,
  117. remainItemCount: 0,
  118. totalReceivedRedEnvelopeAmount: "0",
  119. totalRedEnvelopeAmount: "0",
  120. totalRemainItemAmount: "0"
  121. },
  122. imgHost: HTTP_REQUEST_URL,
  123. is_diy: uni.getStorageSync('is_diy'),
  124. canShow: false,
  125. cartCount: 0,
  126. goodsHidden: true,
  127. footerswitch: true,
  128. hostProduct: [],
  129. cartList: {
  130. valid: [],
  131. invalid: []
  132. },
  133. isAllSelect: false, //全选
  134. selectValue: [], //选中的数据
  135. selectCountPrice: 0.00,
  136. isAuto: false, //没有授权的不会自动授权
  137. isShowAuth: false, //是否隐藏授权
  138. hotScroll: false,
  139. hotPage: 1,
  140. hotLimit: 10,
  141. loading: false,
  142. loadend: false,
  143. loadTitle: this.$t(`我也是有底线的`), //提示语
  144. page: 1,
  145. limit: 20,
  146. loadingInvalid: false,
  147. loadendInvalid: false,
  148. loadTitleInvalid: this.$t(`加载更多`), //提示语
  149. pageInvalid: 1,
  150. limitInvalid: 20,
  151. attr: {
  152. cartAttr: false,
  153. productAttr: [],
  154. productSelect: {}
  155. },
  156. rankList: [],
  157. productValue: [], //系统属性
  158. storeInfo: {},
  159. attrValue: '', //已选属性
  160. attrTxt: this.$t(`请选择`), //属性页面提示
  161. cartId: 0,
  162. product_id: 0,
  163. sysHeight: sysHeight,
  164. newData: {},
  165. activeRouter: '',
  166. is_diy_set: false
  167. };
  168. },
  169. computed: mapGetters(['isLogin']),
  170. onLoad(options) {
  171. let that = this;
  172. if (that.isLogin == false) {
  173. toLogin();
  174. }
  175. let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
  176. let curRoute = routes[routes.length - 1].route //获取当前页面路由
  177. this.activeRouter = '/' + curRoute
  178. },
  179. onShow() {
  180. this.canShow = false
  181. if (this.isLogin == true) {
  182. this.hotPage = 1;
  183. this.hostProduct = [],
  184. this.hotScroll = false,
  185. this.getHostProduct();
  186. this.loadend = false;
  187. this.page = 1;
  188. this.cartList.valid = [];
  189. this.getCartList();
  190. this.loadendInvalid = false;
  191. this.pageInvalid = 1;
  192. this.cartList.invalid = [];
  193. this.getInvalidList();
  194. this.getCartNum();
  195. this.goodsHidden = true;
  196. this.footerswitch = true;
  197. this.hostProduct = [];
  198. this.hotScroll = false;
  199. this.hotPage = 1;
  200. this.hotLimit = 10;
  201. this.cartList = {
  202. valid: [],
  203. invalid: []
  204. },
  205. this.isAllSelect = false; //全选
  206. this.selectValue = []; //选中的数据
  207. this.selectCountPrice = 0.00;
  208. this.cartCount = 0;
  209. this.isShowAuth = false;
  210. };
  211. },
  212. created() {
  213. this.leaderboard()
  214. this.todayStatistics()
  215. },
  216. methods: {
  217. // 授权关闭
  218. authColse: function(e) {
  219. this.isShowAuth = e;
  220. },
  221. // 修改购物车
  222. reGoCat: function() {
  223. let that = this,
  224. productSelect = that.productValue[this.attrValue];
  225. //如果有属性,没有选择,提示用户选择
  226. if (
  227. that.attr.productAttr.length &&
  228. productSelect === undefined
  229. )
  230. return that.$util.Tips({
  231. title: that.$t(`产品库存不足,请选择其它`)
  232. });
  233. let q = {
  234. id: that.cartId,
  235. product_id: that.product_id,
  236. num: that.attr.productSelect.cart_num,
  237. unique: that.attr.productSelect !== undefined ?
  238. that.attr.productSelect.unique : ""
  239. };
  240. getResetCart(q)
  241. .then(function(res) {
  242. that.attr.cartAttr = false;
  243. that.$util.Tips({
  244. title: that.$t(`添加购物车成功`),
  245. success: () => {
  246. that.loadend = false;
  247. that.page = 1;
  248. that.cartList.valid = [];
  249. that.getCartList();
  250. that.getCartNum();
  251. }
  252. });
  253. })
  254. .catch(res => {
  255. return that.$util.Tips({
  256. title: res.msg
  257. });
  258. });
  259. },
  260. onMyEvent: function() {
  261. this.$set(this.attr, 'cartAttr', false);
  262. },
  263. reElection: function(item) {
  264. this.getGoodsDetails(item)
  265. },
  266. leaderboard() {
  267. let that = this
  268. uni.showLoading({
  269. title: this.$t(`加载中`),
  270. mask: true
  271. });
  272. let postData = {
  273. flag: this.isactiveTab === 'todayRank' ? 1 : 0
  274. }
  275. leaderboard(postData).then(res => {
  276. if (res.data.length > 0) {
  277. that.$set(that, "rankList", res.data)
  278. } else {
  279. that.$set(that, "rankList", [])
  280. }
  281. uni.hideLoading();
  282. })
  283. },
  284. todayStatistics() {
  285. uni.showLoading({
  286. title: this.$t(`加载中`),
  287. mask: true
  288. });
  289. let postData = {
  290. flag: this.isactiveTab === 'todayRank' ? 1 : 0
  291. }
  292. todayStatistics().then(res => {
  293. if (res.data.length > 0) {
  294. this.moneyObj = res.data
  295. }
  296. uni.hideLoading();
  297. })
  298. },
  299. /**
  300. * 属性变动赋值
  301. *
  302. */
  303. ChangeAttr: function(res) {
  304. let productSelect = this.productValue[res];
  305. if (productSelect && productSelect.stock > 0) {
  306. this.$set(this.attr.productSelect, "image", productSelect.image);
  307. this.$set(this.attr.productSelect, "price", productSelect.price);
  308. this.$set(this.attr.productSelect, "stock", productSelect.stock);
  309. this.$set(this.attr.productSelect, "unique", productSelect.unique);
  310. this.$set(this.attr.productSelect, "cart_num", 1);
  311. this.$set(this, "attrValue", res);
  312. this.$set(this, "attrTxt", this.$t(`已选择`));
  313. } else {
  314. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  315. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  316. this.$set(this.attr.productSelect, "stock", 0);
  317. this.$set(this.attr.productSelect, "unique", "");
  318. this.$set(this.attr.productSelect, "cart_num", 0);
  319. this.$set(this, "attrValue", "");
  320. this.$set(this, "attrTxt", this.$t(`请选择`));
  321. }
  322. },
  323. /**
  324. * 默认选中属性
  325. *
  326. */
  327. DefaultSelect: function() {
  328. let productAttr = this.attr.productAttr;
  329. let value = [];
  330. for (var key in this.productValue) {
  331. if (this.productValue[key].stock > 0) {
  332. value = this.attr.productAttr.length ? key.split(",") : [];
  333. break;
  334. }
  335. }
  336. for (let i = 0; i < productAttr.length; i++) {
  337. this.$set(productAttr[i], "index", value[i]);
  338. }
  339. //sort();排序函数:数字-英文-汉字;
  340. let productSelect = this.productValue[value.sort().join(",")];
  341. if (productSelect && productAttr.length) {
  342. this.$set(
  343. this.attr.productSelect,
  344. "store_name",
  345. this.storeInfo.store_name
  346. );
  347. this.$set(this.attr.productSelect, "image", productSelect.image);
  348. this.$set(this.attr.productSelect, "price", productSelect.price);
  349. this.$set(this.attr.productSelect, "stock", productSelect.stock);
  350. this.$set(this.attr.productSelect, "unique", productSelect.unique);
  351. this.$set(this.attr.productSelect, "cart_num", 1);
  352. this.$set(this, "attrValue", value.sort().join(","));
  353. this.$set(this, "attrTxt", this.$t(`已选择`));
  354. } else if (!productSelect && productAttr.length) {
  355. this.$set(
  356. this.attr.productSelect,
  357. "store_name",
  358. this.storeInfo.store_name
  359. );
  360. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  361. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  362. this.$set(this.attr.productSelect, "stock", 0);
  363. this.$set(this.attr.productSelect, "unique", "");
  364. this.$set(this.attr.productSelect, "cart_num", 0);
  365. this.$set(this, "attrValue", "");
  366. this.$set(this, "attrTxt", this.$t(`请选择`));
  367. } else if (!productSelect && !productAttr.length) {
  368. this.$set(
  369. this.attr.productSelect,
  370. "store_name",
  371. this.storeInfo.store_name
  372. );
  373. this.$set(this.attr.productSelect, "image", this.storeInfo.image);
  374. this.$set(this.attr.productSelect, "price", this.storeInfo.price);
  375. this.$set(this.attr.productSelect, "stock", this.storeInfo.stock);
  376. this.$set(
  377. this.attr.productSelect,
  378. "unique",
  379. this.storeInfo.unique || ""
  380. );
  381. this.$set(this.attr.productSelect, "cart_num", 1);
  382. this.$set(this, "attrValue", "");
  383. this.$set(this, "attrTxt", this.$t(`请选择`));
  384. }
  385. },
  386. attrVal(val) {
  387. this.$set(this.attr.productAttr[val.indexw], 'index', this.attr.productAttr[val.indexw].attr_values[val
  388. .indexn]);
  389. },
  390. /**
  391. * 购物车数量加和数量减
  392. *
  393. */
  394. ChangeCartNum: function(changeValue) {
  395. //changeValue:是否 加|减
  396. //获取当前变动属性
  397. let productSelect = this.productValue[this.attrValue];
  398. //如果没有属性,赋值给商品默认库存
  399. if (productSelect === undefined && !this.attr.productAttr.length)
  400. productSelect = this.attr.productSelect;
  401. //无属性值即库存为0;不存在加减;
  402. if (productSelect === undefined) return;
  403. let stock = productSelect.stock || 0;
  404. let num = this.attr.productSelect;
  405. if (changeValue) {
  406. num.cart_num++;
  407. if (num.cart_num > stock) {
  408. this.$set(this.attr.productSelect, "cart_num", stock ? stock : 1);
  409. this.$set(this, "cart_num", stock ? stock : 1);
  410. }
  411. } else {
  412. num.cart_num--;
  413. if (num.cart_num < 1) {
  414. this.$set(this.attr.productSelect, "cart_num", 1);
  415. this.$set(this, "cart_num", 1);
  416. }
  417. }
  418. },
  419. /**
  420. * 购物车手动填写
  421. *
  422. */
  423. iptCartNum: function(e) {
  424. this.$set(this.attr.productSelect, 'cart_num', e);
  425. },
  426. subDel: function(event) {
  427. let that = this,
  428. selectValue = that.selectValue;
  429. if (selectValue.length > 0)
  430. cartDel(selectValue).then(res => {
  431. that.loadend = false;
  432. that.page = 1;
  433. that.cartList.valid = [];
  434. that.getCartList();
  435. that.getCartNum();
  436. });
  437. else
  438. return that.$util.Tips({
  439. title: that.$t(`请选择产品`)
  440. });
  441. },
  442. getSelectValueProductId: function() {
  443. let that = this;
  444. let validList = that.cartList.valid;
  445. let selectValue = that.selectValue;
  446. let productId = [];
  447. if (selectValue.length > 0) {
  448. for (let index in validList) {
  449. if (that.inArray(validList[index].id, selectValue)) {
  450. productId.push(validList[index].product_id);
  451. }
  452. }
  453. };
  454. return productId;
  455. },
  456. subCollect: function(event) {
  457. let that = this,
  458. selectValue = that.selectValue;
  459. if (selectValue.length > 0) {
  460. let selectValueProductId = that.getSelectValueProductId();
  461. collectAll(that.getSelectValueProductId().join(',')).then(res => {
  462. return that.$util.Tips({
  463. title: res.msg,
  464. icon: 'success'
  465. });
  466. }).catch(err => {
  467. return that.$util.Tips({
  468. title: err
  469. });
  470. });
  471. } else {
  472. return that.$util.Tips({
  473. title: that.$t(`请选择产品`)
  474. });
  475. }
  476. },
  477. subOrder(event) {
  478. console.log(event)
  479. let that = this,
  480. selectValue = that.selectValue;
  481. if (selectValue.length > 0) {
  482. uni.navigateTo({
  483. url: '/pages/goods/order_confirm/index?cartId=' + selectValue.join(',')
  484. });
  485. } else {
  486. return that.$util.Tips({
  487. title: that.$t(`请选择产品`)
  488. });
  489. }
  490. },
  491. checkboxAllChange: function(event) {
  492. let value = event.detail.value;
  493. if (value.length > 0) {
  494. this.setAllSelectValue(1)
  495. } else {
  496. this.setAllSelectValue(0)
  497. }
  498. },
  499. setAllSelectValue: function(status) {
  500. let that = this;
  501. let selectValue = [];
  502. let valid = that.cartList.valid;
  503. if (valid.length > 0) {
  504. let newValid = valid.map(item => {
  505. if (status) {
  506. if (that.footerswitch) {
  507. if (item.attrStatus) {
  508. item.checked = true;
  509. selectValue.push(item.id);
  510. } else {
  511. item.checked = false;
  512. }
  513. } else {
  514. item.checked = true;
  515. selectValue.push(item.id);
  516. }
  517. that.isAllSelect = true;
  518. } else {
  519. item.checked = false;
  520. that.isAllSelect = false;
  521. }
  522. return item;
  523. });
  524. that.$set(that.cartList, 'valid', newValid);
  525. that.selectValue = selectValue;
  526. that.switchSelect();
  527. }
  528. },
  529. checkboxChange: function(event) {
  530. let that = this;
  531. let value = event.detail.value;
  532. let valid = that.cartList.valid;
  533. let arr1 = [];
  534. let arr2 = [];
  535. let arr3 = [];
  536. let newValid = valid.map(item => {
  537. if (that.inArray(item.id, value)) {
  538. if (that.footerswitch) {
  539. if (item.attrStatus) {
  540. item.checked = true;
  541. arr1.push(item);
  542. } else {
  543. item.checked = false;
  544. }
  545. } else {
  546. item.checked = true;
  547. arr1.push(item);
  548. }
  549. } else {
  550. item.checked = false;
  551. arr2.push(item);
  552. }
  553. return item;
  554. });
  555. if (that.footerswitch) {
  556. arr3 = arr2.filter(item => !item.attrStatus);
  557. }
  558. // for (let index in valid) {
  559. // if (that.inArray(valid[index].id, value)){
  560. // if(valid[index].attrStatus){
  561. // valid[index].checked = true;
  562. // }else{
  563. // valid[index].checked = false;
  564. // }
  565. // } else {
  566. // valid[index].checked = false;
  567. // }
  568. // }
  569. that.$set(that.cartList, 'valid', newValid);
  570. // let newArr = that.cartList.valid.filter(item => item.attrStatus);
  571. that.isAllSelect = newValid.length === arr1.length + arr3.length;
  572. that.selectValue = value;
  573. that.switchSelect();
  574. },
  575. inArray: function(search, array) {
  576. for (let i in array) {
  577. if (array[i] == search) {
  578. return true;
  579. }
  580. }
  581. return false;
  582. },
  583. switchSelect: function() {
  584. let that = this;
  585. let validList = that.cartList.valid;
  586. let selectValue = that.selectValue;
  587. let selectCountPrice = 0.00;
  588. if (selectValue.length < 1) {
  589. that.selectCountPrice = selectCountPrice;
  590. } else {
  591. for (let index in validList) {
  592. if (that.inArray(validList[index].id, selectValue)) {
  593. selectCountPrice = that.$util.$h.Add(selectCountPrice, that.$util.$h.Mul(validList[index]
  594. .cart_num, validList[
  595. index].truePrice))
  596. }
  597. }
  598. that.selectCountPrice = selectCountPrice;
  599. }
  600. },
  601. /**
  602. * 购物车手动填写
  603. *
  604. */
  605. iptCartNum: function(index) {
  606. let item = this.cartList.valid[index];
  607. if (item.cart_num) {
  608. this.setCartNum(item.id, item.cart_num);
  609. }
  610. this.switchSelect();
  611. },
  612. blurInput: function(index) {
  613. let item = this.cartList.valid[index];
  614. console.log(item)
  615. if (!item.cart_num) {
  616. item.cart_num = 1;
  617. this.$set(this.cartList, 'valid', this.cartList.valid)
  618. }
  619. },
  620. subCart: function(index) {
  621. let that = this;
  622. let status = false;
  623. let item = that.cartList.valid[index];
  624. item.cart_num = Number(item.cart_num) - 1;
  625. if (item.cart_num < 1) status = true;
  626. if (item.cart_num <= 1) {
  627. item.cart_num = 1;
  628. item.numSub = true;
  629. } else {
  630. item.numSub = false;
  631. item.numAdd = false;
  632. }
  633. if (false == status) {
  634. that.setCartNum(item.id, item.cart_num, function(data) {
  635. that.cartList.valid[index] = item;
  636. that.getCartNum();
  637. that.switchSelect();
  638. });
  639. }
  640. },
  641. addCart: function(index) {
  642. let that = this;
  643. let item = that.cartList.valid[index];
  644. item.cart_num = Number(item.cart_num) + 1;
  645. let productInfo = item.productInfo;
  646. if (productInfo.hasOwnProperty('attrInfo') && item.cart_num >= item.productInfo.attrInfo.stock) {
  647. item.cart_num = item.productInfo.attrInfo.stock;
  648. item.numAdd = true;
  649. item.numSub = false;
  650. } else {
  651. item.numAdd = false;
  652. item.numSub = false;
  653. }
  654. that.setCartNum(item.id, item.cart_num, function(data) {
  655. that.cartList.valid[index] = item;
  656. that.getCartNum();
  657. that.switchSelect();
  658. });
  659. },
  660. setCartNum(cartId, cartNum, successCallback) {
  661. let that = this;
  662. changeCartNum(cartId, cartNum).then(res => {
  663. console.log(res)
  664. successCallback && successCallback(res.data);
  665. }).catch(err => {
  666. console.log(err)
  667. return that.$util.Tips({
  668. title: err
  669. });
  670. })
  671. },
  672. getCartNum: function() {
  673. let that = this;
  674. // getCartCounts().then(res => {
  675. that.cartCount = 0;
  676. this.$store.commit('indexData/setCartNum', that.cartCount > 99 ? '..' : that.cartCount)
  677. if (that.cartCount > 0) {
  678. wx.setTabBarBadge({
  679. index: 2,
  680. text: that.cartCount + ''
  681. })
  682. } else {
  683. wx.hideTabBarRedDot({
  684. index: 2
  685. })
  686. }
  687. // });
  688. },
  689. getCartData(data) {
  690. let resData = {
  691. "valid": [],
  692. "invalid": [],
  693. "deduction": {
  694. "seckill_id": 0,
  695. "bargain_id": 0,
  696. "combination_id": 0,
  697. "discount_id": 0
  698. }
  699. }
  700. this.loading = false;
  701. this.canShow = true
  702. return resData;
  703. // return new Promise((resolve, reject) => {
  704. // getCartList(data).then((res) => {
  705. // resolve(res.data);
  706. // }).catch((err) => {
  707. // this.loading = false;
  708. // this.canShow = true
  709. // this.$util.Tips({
  710. // title: err
  711. // });
  712. // })
  713. // });
  714. },
  715. async getCartList() {
  716. uni.showLoading({
  717. title: this.$t(`加载中`),
  718. mask: true
  719. });
  720. let that = this;
  721. let data = {
  722. page: that.page,
  723. limit: that.limit,
  724. status: 1
  725. }
  726. let countResData = {
  727. "count": 0,
  728. "ids": [
  729. 9671,
  730. 9670,
  731. 9669
  732. ],
  733. "sum_price": "955.00"
  734. }
  735. // getCartCounts().then(async c => {
  736. that.cartCount = countResData.count;
  737. let n = Math.ceil(countResData.ids.length / that.limit)
  738. for (let i = 0; i < n; i++) {
  739. // let cartList = await this.getCartData(data)
  740. let cartListData = {
  741. "valid": [{
  742. "id": 9671,
  743. "uid": 34391,
  744. "type": "0",
  745. "product_id": 97,
  746. "product_attr_unique": "fd6d98f3",
  747. "cart_num": 1,
  748. "add_time": 1666709939,
  749. "is_pay": 0,
  750. "is_del": 0,
  751. "is_new": 0,
  752. "combination_id": 0,
  753. "seckill_id": 0,
  754. "bargain_id": 0,
  755. "advance_id": 0,
  756. "status": 1,
  757. "productInfo": {
  758. "id": 97,
  759. "mer_id": 0,
  760. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_0d407b8541efd8c8f87e5ac581d1421c.png",
  761. "recommend_image": "",
  762. "slider_image": [
  763. "https://demo26.crmeb.net/uploads/attach/2021/11/13/2d97c9bd7abcdb65049c97bbe9ba61d1.jpg",
  764. "https://demo26.crmeb.net/uploads/attach/2021/11/13/a48cce02122f4046193bdda67d970b55.jpg",
  765. "https://demo26.crmeb.net/uploads/attach/2021/11/13/5c4754f2b647b9e240e08f48c9889ebf.jpg",
  766. "https://demo26.crmeb.net/uploads/attach/2021/11/13/e8f6b1235f10f83d8a43bd91def20332.jpg",
  767. "https://demo26.crmeb.net/uploads/attach/2021/11/13/634a51ad34590eab005063742d086b87.jpg"
  768. ],
  769. "store_name": "仟佰家 干花花束真花手工落地高枝装饰摆件招财莲蓬插花居客厅摆设 干花组合6025【不含花瓶】 干花包",
  770. "store_info": "仟佰家 干花花束真花手工落地高枝装饰摆件招财莲蓬插花居客厅摆设 干花组合6025【不含花瓶】 干花包",
  771. "keyword": "",
  772. "bar_code": "",
  773. "cate_id": "22,24",
  774. "price": "306.00",
  775. "vip_price": "0.00",
  776. "ot_price": "299.00",
  777. "postage": "0.00",
  778. "unit_name": "件",
  779. "sort": 100,
  780. "sales": 2,
  781. "stock": 12384,
  782. "is_show": 1,
  783. "is_hot": 0,
  784. "is_benefit": 0,
  785. "is_best": 0,
  786. "is_new": 1,
  787. "is_virtual": 0,
  788. "virtual_type": 0,
  789. "add_time": 1636791973,
  790. "is_postage": 0,
  791. "is_del": 0,
  792. "mer_use": 0,
  793. "give_integral": "0.00",
  794. "cost": "258.00",
  795. "is_seckill": 0,
  796. "is_bargain": null,
  797. "is_good": 0,
  798. "is_sub": 0,
  799. "is_vip": 0,
  800. "ficti": 0,
  801. "browse": 0,
  802. "code_path": "",
  803. "soure_link": "",
  804. "temp_id": 57,
  805. "spec_type": 1,
  806. "activity": "0,1,2,3",
  807. "spu": "5310153503736",
  808. "label_id": "0",
  809. "video_link": "",
  810. "command_word": "",
  811. "recommend_list": "",
  812. "vip_product": 0,
  813. "presale": 0,
  814. "presale_start_time": 0,
  815. "presale_end_time": 0,
  816. "presale_day": 0,
  817. "logistics": "1,2",
  818. "freight": 2,
  819. "custom_form": "",
  820. "is_limit": 0,
  821. "limit_type": 0,
  822. "limit_num": 0,
  823. "express_delivery": true,
  824. "store_mention": true,
  825. "attrInfo": {
  826. "id": 967,
  827. "product_id": 97,
  828. "suk": "干花组合6025【不含花瓶】,干花包",
  829. "stock": 562,
  830. "sales": 1,
  831. "price": "306.00",
  832. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/13/small_634a51ad34590eab005063742d086b87.jpg",
  833. "bar_code": "",
  834. "ot_price": "299.00",
  835. "volume": "0.00",
  836. "weight": "0.00",
  837. "brokerage": "0.00",
  838. "brokerage_two": "0.00",
  839. "type": 0,
  840. "unique": "fd6d98f3",
  841. "cost": "258.00",
  842. "quota": 0,
  843. "quota_show": 0,
  844. "vip_price": "0.00",
  845. "is_virtual": 0,
  846. "coupon_id": 0,
  847. "disk_info": ""
  848. }
  849. },
  850. "attrStatus": true,
  851. "vip_truePrice": 0,
  852. "costPrice": "258.00",
  853. "trueStock": 562,
  854. "truePrice": 306,
  855. "sum_price": "306.00",
  856. "price_type": "level",
  857. "is_valid": 1
  858. },
  859. {
  860. "id": 9670,
  861. "uid": 34391,
  862. "type": "0",
  863. "product_id": 102,
  864. "product_attr_unique": "02cce37e",
  865. "cart_num": 1,
  866. "add_time": 1666709927,
  867. "is_pay": 0,
  868. "is_del": 0,
  869. "is_new": 0,
  870. "combination_id": 0,
  871. "seckill_id": 0,
  872. "bargain_id": 0,
  873. "advance_id": 0,
  874. "status": 1,
  875. "productInfo": {
  876. "id": 102,
  877. "mer_id": 0,
  878. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/15/small_a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
  879. "recommend_image": "",
  880. "slider_image": [
  881. "https://demo26.crmeb.net/uploads/attach/2021/11/15/a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
  882. "https://demo26.crmeb.net/uploads/attach/2021/11/15/7f46e98ece1920e1a4082dfc72bcd72a.jpg",
  883. "https://demo26.crmeb.net/uploads/attach/2021/11/15/bfb275263d02ab081b8670a752f2823f.jpg",
  884. "https://demo26.crmeb.net/uploads/attach/2021/11/15/e499a4dc489cda7b8d472cb3a3b348b7.jpg",
  885. "https://demo26.crmeb.net/uploads/attach/2021/11/15/06fa150a47163e973bb4806a380afaab.jpg"
  886. ],
  887. "store_name": "索尼(SONY)WH-CH510 无线立体声耳机 学生网课 白色",
  888. "store_info": "索尼(SONY)WH-CH510 无线立体声耳机 学生网课 白色",
  889. "keyword": "耳机",
  890. "bar_code": "",
  891. "cate_id": "18,27,25",
  892. "price": "299.00",
  893. "vip_price": "0.00",
  894. "ot_price": "349.00",
  895. "postage": "0.00",
  896. "unit_name": "件",
  897. "sort": 0,
  898. "sales": 3,
  899. "stock": 297,
  900. "is_show": 1,
  901. "is_hot": 0,
  902. "is_benefit": 0,
  903. "is_best": 0,
  904. "is_new": 0,
  905. "is_virtual": 0,
  906. "virtual_type": 0,
  907. "add_time": 1636958921,
  908. "is_postage": 0,
  909. "is_del": 0,
  910. "mer_use": 0,
  911. "give_integral": "0.00",
  912. "cost": "259.00",
  913. "is_seckill": 0,
  914. "is_bargain": null,
  915. "is_good": 0,
  916. "is_sub": 0,
  917. "is_vip": 0,
  918. "ficti": 0,
  919. "browse": 0,
  920. "code_path": "",
  921. "soure_link": "",
  922. "temp_id": 57,
  923. "spec_type": 1,
  924. "activity": "0,1,2,3",
  925. "spu": "5757529716664",
  926. "label_id": "0",
  927. "video_link": "",
  928. "command_word": "",
  929. "recommend_list": "",
  930. "vip_product": 0,
  931. "presale": 0,
  932. "presale_start_time": 0,
  933. "presale_end_time": 0,
  934. "presale_day": 0,
  935. "logistics": "1,2",
  936. "freight": 2,
  937. "custom_form": "",
  938. "is_limit": 0,
  939. "limit_type": 0,
  940. "limit_num": 0,
  941. "express_delivery": true,
  942. "store_mention": true,
  943. "attrInfo": {
  944. "id": 9,
  945. "product_id": 102,
  946. "suk": "黑色,CH510",
  947. "stock": 98,
  948. "sales": 2,
  949. "price": "299.00",
  950. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/15/small_a79f5d2ea6bf0c3c11b2127332dfe2df.jpg",
  951. "bar_code": "",
  952. "ot_price": "349.00",
  953. "volume": "0.00",
  954. "weight": "0.00",
  955. "brokerage": "0.00",
  956. "brokerage_two": "0.00",
  957. "type": 0,
  958. "unique": "02cce37e",
  959. "cost": "259.00",
  960. "quota": 0,
  961. "quota_show": 0,
  962. "vip_price": "0.00",
  963. "is_virtual": 0,
  964. "coupon_id": 0,
  965. "disk_info": ""
  966. }
  967. },
  968. "attrStatus": true,
  969. "vip_truePrice": 0,
  970. "costPrice": "259.00",
  971. "trueStock": 98,
  972. "truePrice": 299,
  973. "sum_price": "299.00",
  974. "price_type": "level",
  975. "is_valid": 1
  976. },
  977. {
  978. "id": 9669,
  979. "uid": 34391,
  980. "type": "0",
  981. "product_id": 89,
  982. "product_attr_unique": "89807c67",
  983. "cart_num": 1,
  984. "add_time": 1666709911,
  985. "is_pay": 0,
  986. "is_del": 0,
  987. "is_new": 0,
  988. "combination_id": 0,
  989. "seckill_id": 0,
  990. "bargain_id": 0,
  991. "advance_id": 0,
  992. "status": 1,
  993. "productInfo": {
  994. "id": 89,
  995. "mer_id": 0,
  996. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_2fbe723632427b0768df24c4f23c6cad.png",
  997. "recommend_image": "",
  998. "slider_image": [
  999. "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/2fbe723632427b0768df24c4f23c6cad.png",
  1000. "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/64d188477292aa4ae2df8da7e63aca79.png"
  1001. ],
  1002. "store_name": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
  1003. "store_info": "",
  1004. "keyword": "家居梵高系列联名款饭盒袋大容量手拎保温实用方便 星月夜饭盒袋",
  1005. "bar_code": "",
  1006. "cate_id": "35",
  1007. "price": "350.00",
  1008. "vip_price": "0.00",
  1009. "ot_price": "300.00",
  1010. "postage": "0.00",
  1011. "unit_name": "件",
  1012. "sort": 553,
  1013. "sales": 19,
  1014. "stock": 185,
  1015. "is_show": 1,
  1016. "is_hot": 1,
  1017. "is_benefit": 0,
  1018. "is_best": 0,
  1019. "is_new": 0,
  1020. "is_virtual": 0,
  1021. "virtual_type": 0,
  1022. "add_time": 1636777038,
  1023. "is_postage": 0,
  1024. "is_del": 0,
  1025. "mer_use": 0,
  1026. "give_integral": "0.00",
  1027. "cost": "300.00",
  1028. "is_seckill": 0,
  1029. "is_bargain": null,
  1030. "is_good": 1,
  1031. "is_sub": 0,
  1032. "is_vip": 0,
  1033. "ficti": 0,
  1034. "browse": 0,
  1035. "code_path": "",
  1036. "soure_link": "",
  1037. "temp_id": 0,
  1038. "spec_type": 1,
  1039. "activity": "0,1,2,3",
  1040. "spu": "1015710267816",
  1041. "label_id": "",
  1042. "video_link": "",
  1043. "command_word": "",
  1044. "recommend_list": "",
  1045. "vip_product": 0,
  1046. "presale": 0,
  1047. "presale_start_time": 0,
  1048. "presale_end_time": 0,
  1049. "presale_day": 0,
  1050. "logistics": "1,2",
  1051. "freight": 2,
  1052. "custom_form": "[]",
  1053. "is_limit": 0,
  1054. "limit_type": 0,
  1055. "limit_num": 0,
  1056. "express_delivery": true,
  1057. "store_mention": true,
  1058. "attrInfo": {
  1059. "id": 1017,
  1060. "product_id": 89,
  1061. "suk": "梵高自画像饭盒",
  1062. "stock": 88,
  1063. "sales": 8,
  1064. "price": "350.00",
  1065. "image": "https://demo26.crmeb.net/uploads/attach/2021/11/20211113/small_2fbe723632427b0768df24c4f23c6cad.png",
  1066. "bar_code": "",
  1067. "ot_price": "300.00",
  1068. "volume": "0.00",
  1069. "weight": "0.00",
  1070. "brokerage": "0.00",
  1071. "brokerage_two": "0.00",
  1072. "type": 0,
  1073. "unique": "89807c67",
  1074. "cost": "300.00",
  1075. "quota": 0,
  1076. "quota_show": 0,
  1077. "vip_price": "0.00",
  1078. "is_virtual": 0,
  1079. "coupon_id": 0,
  1080. "disk_info": ""
  1081. }
  1082. },
  1083. "attrStatus": true,
  1084. "vip_truePrice": 0,
  1085. "costPrice": "300.00",
  1086. "trueStock": 88,
  1087. "truePrice": 350,
  1088. "sum_price": "350.00",
  1089. "price_type": "level",
  1090. "is_valid": 1
  1091. }
  1092. ],
  1093. "invalid": [],
  1094. "deduction": {
  1095. "seckill_id": 0,
  1096. "bargain_id": 0,
  1097. "combination_id": 0,
  1098. "discount_id": 0
  1099. }
  1100. }
  1101. let cartList = cartListData
  1102. let valid = cartList.valid
  1103. let validList = that.$util.SplitArray(valid, that.cartList.valid);
  1104. let numSub = [{
  1105. numSub: true
  1106. }, {
  1107. numSub: false
  1108. }];
  1109. let numAdd = [{
  1110. numAdd: true
  1111. }, {
  1112. numAdd: false
  1113. }],
  1114. selectValue = [];
  1115. if (validList.length > 0) {
  1116. for (let index in validList) {
  1117. if (validList[index].cart_num == 1) {
  1118. validList[index].numSub = true;
  1119. } else {
  1120. validList[index].numSub = false;
  1121. }
  1122. let productInfo = validList[index].productInfo;
  1123. if (productInfo.hasOwnProperty('attrInfo') && validList[index].cart_num ==
  1124. validList[index].productInfo.attrInfo
  1125. .stock) {
  1126. validList[index].numAdd = true;
  1127. } else if (validList[index].cart_num == validList[index].productInfo
  1128. .stock) {
  1129. validList[index].numAdd = true;
  1130. } else {
  1131. validList[index].numAdd = false;
  1132. }
  1133. if (validList[index].attrStatus) {
  1134. validList[index].checked = true;
  1135. selectValue.push(validList[index].id);
  1136. } else {
  1137. validList[index].checked = false;
  1138. }
  1139. }
  1140. }
  1141. that.$set(that.cartList, 'valid', validList);
  1142. data.page = that.page + 1;
  1143. // that.goodsHidden = cartList.valid.length <= 0 ? false : true;
  1144. that.selectValue = selectValue;
  1145. let newArr = validList.filter(item => item.attrStatus);
  1146. that.isAllSelect = newArr.length == selectValue.length && newArr.length;
  1147. that.switchSelect();
  1148. }
  1149. that.loading = false;
  1150. this.canShow = true
  1151. uni.hideLoading();
  1152. // });
  1153. },
  1154. getInvalidList: function() {
  1155. let that = this;
  1156. if (this.loadendInvalid) return false;
  1157. if (this.loadingInvalid) return false;
  1158. let data = {
  1159. page: that.pageInvalid,
  1160. limit: that.limitInvalid,
  1161. status: 0
  1162. }
  1163. let resData = {
  1164. "valid": [],
  1165. "invalid": [],
  1166. "deduction": {
  1167. "seckill_id": 0,
  1168. "bargain_id": 0,
  1169. "combination_id": 0,
  1170. "discount_id": 0
  1171. }
  1172. }
  1173. // getCartList(data).then(res => {
  1174. let cartList = resData,
  1175. invalid = cartList.invalid,
  1176. loadendInvalid = invalid.length < that.limitInvalid;
  1177. let invalidList = that.$util.SplitArray(invalid, that.cartList.invalid);
  1178. that.$set(that.cartList, 'invalid', invalidList);
  1179. that.loadendInvalid = loadendInvalid;
  1180. that.loadTitleInvalid = loadendInvalid ? that.$t(`我也是有底线的`) : that.$t(`加载更多`);
  1181. that.pageInvalid = that.pageInvalid + 1;
  1182. that.loadingInvalid = false;
  1183. // }).catch(res => {
  1184. // that.loadingInvalid = false;
  1185. // that.loadTitleInvalid = that.$t(`加载更多`);
  1186. // })
  1187. },
  1188. getHostProduct: function() {
  1189. let that = this;
  1190. if (that.hotScroll) return
  1191. that.hotPage++
  1192. that.hotScroll = hot_res.length < that.hotLimit
  1193. that.hostProduct = that.hostProduct.concat(hot_res)
  1194. // getProductHot(
  1195. // that.hotPage,
  1196. // that.hotLimit,
  1197. // ).then(res => {
  1198. // that.hotPage++
  1199. // that.hotScroll = res.data.length < that.hotLimit
  1200. // that.hostProduct = that.hostProduct.concat(res.data)
  1201. // });
  1202. },
  1203. goodsOpen: function() {
  1204. let that = this;
  1205. that.goodsHidden = !that.goodsHidden;
  1206. },
  1207. goRouter(item) {
  1208. var pages = getCurrentPages();
  1209. var page = (pages[pages.length - 1]).$page.fullPath;
  1210. if (item.link == page) return
  1211. uni.switchTab({
  1212. url: item.link,
  1213. fail(err) {
  1214. uni.redirectTo({
  1215. url: item.link
  1216. })
  1217. }
  1218. })
  1219. },
  1220. manage: function() {
  1221. let that = this;
  1222. that.footerswitch = !that.footerswitch;
  1223. let arr1 = [];
  1224. let arr2 = [];
  1225. let newValid = that.cartList.valid.map(item => {
  1226. if (that.footerswitch) {
  1227. if (item.attrStatus) {
  1228. if (item.checked) {
  1229. arr1.push(item.id);
  1230. }
  1231. } else {
  1232. item.checked = false;
  1233. arr2.push(item);
  1234. }
  1235. } else {
  1236. if (item.checked) {
  1237. arr1.push(item.id);
  1238. }
  1239. }
  1240. return item;
  1241. });
  1242. that.cartList.valid = newValid;
  1243. if (that.footerswitch) {
  1244. that.isAllSelect = newValid.length === arr1.length + arr2.length;
  1245. } else {
  1246. that.isAllSelect = newValid.length === arr1.length;
  1247. }
  1248. that.selectValue = arr1;
  1249. that.switchSelect();
  1250. },
  1251. unsetCart: function() {
  1252. let that = this,
  1253. ids = [];
  1254. for (let i = 0, len = that.cartList.invalid.length; i < len; i++) {
  1255. ids.push(that.cartList.invalid[i].id);
  1256. }
  1257. cartDel(ids).then(res => {
  1258. that.$util.Tips({
  1259. title: that.$t(`清除成功`)
  1260. });
  1261. that.$set(that.cartList, 'invalid', []);
  1262. that.getCartNum();
  1263. }).catch(res => {
  1264. });
  1265. }
  1266. },
  1267. onReachBottom() {
  1268. let that = this;
  1269. if (that.loadend) {
  1270. that.getInvalidList();
  1271. }
  1272. if (that.cartList.valid.length == 0 && that.cartList.invalid.length == 0) {
  1273. that.getHostProduct();
  1274. }
  1275. }
  1276. }
  1277. </script>
  1278. <style scoped lang="scss">
  1279. .order_addcart {
  1280. padding: 20rpx;
  1281. }
  1282. .rank-list {
  1283. background: white;
  1284. margin-top: 20rpx;
  1285. padding-top: 20rpx;
  1286. padding-bottom: 10rpx;
  1287. height: 600rpx;
  1288. overflow: auto;
  1289. .rank-list-item {
  1290. margin: 20rpx;
  1291. margin-bottom: 40rpx;
  1292. width: calc(100% - 40rpx);
  1293. height: 50rpx;
  1294. display: flex;
  1295. image {
  1296. width: 50rpx;
  1297. height: 50rpx;
  1298. margin-right: 20rpx;
  1299. margin-left: 10rpx;
  1300. }
  1301. .nuber {
  1302. font-size: 18rpx;
  1303. margin-right: 20rpx;
  1304. line-height: 0rpx;
  1305. }
  1306. .mosaic {
  1307. font-size: 18rpx;
  1308. margin-right: 20rpx;
  1309. color: #999999;
  1310. line-height: 0rpx;
  1311. }
  1312. .litem-info {
  1313. text-align: right;
  1314. flex-grow: 1;
  1315. font-size: 24rpx;
  1316. line-height: 50rpx;
  1317. margin-right: 20rpx;
  1318. color: #666666;
  1319. }
  1320. .balance {
  1321. line-height: 50rpx;
  1322. color: #EB4C63;
  1323. }
  1324. }
  1325. }
  1326. .loop {
  1327. background: url('http://wine.gzzzyd.com/wx/order_addcart/hongbaochi.png') no-repeat;
  1328. width: 100%;
  1329. height: 250rpx;
  1330. background-size: 100% 100%;
  1331. position: relative;
  1332. .loop-title {
  1333. padding: 20rpx;
  1334. padding-left: 35rpx;
  1335. font-size: 32rpx;
  1336. }
  1337. .loop-count {
  1338. text-align: center;
  1339. line-height: 97rpx;
  1340. font-size: 48rpx;
  1341. color: #EB4C63;
  1342. width: 420rpx;
  1343. height: 97rpx;
  1344. background: #FFFFFF;
  1345. border-radius: 23px;
  1346. border: 1px solid #EB4C63;
  1347. position: absolute;
  1348. left: 50%;
  1349. top: 47%;
  1350. transform: translateX(-50%);
  1351. }
  1352. // image {
  1353. // width: 100%;
  1354. // }
  1355. }
  1356. .tab-area {
  1357. margin-top: 20rpx;
  1358. display: flex;
  1359. flex-wrap: nowrap;
  1360. justify-content: space-between;
  1361. line-height: 90rpx;
  1362. text-align: center;
  1363. .base-tab {
  1364. width: 48%;
  1365. height: 90rpx;
  1366. }
  1367. .tab-area-active1 {
  1368. background: url('http://wine.gzzzyd.com/wx/order_addcart/tab1.png') no-repeat;
  1369. background-size: 340rpx 120rpx;
  1370. }
  1371. .tab-area-active2 {
  1372. background: url('http://wine.gzzzyd.com/wx/order_addcart/tab2.png') no-repeat;
  1373. background-size: 340rpx 120rpx;
  1374. }
  1375. }
  1376. .order_addcart-header-area {
  1377. display: flex;
  1378. .received {
  1379. width: 405rpx;
  1380. height: 175rpx;
  1381. padding: 20rpx;
  1382. margin-bottom: 20rpx;
  1383. margin-right: 20rpx;
  1384. background-color: #fff;
  1385. border-radius: 20rpx;
  1386. overflow: hidden;
  1387. position: relative;
  1388. display: flex;
  1389. .pictrue {
  1390. display: flex;
  1391. align-items: center;
  1392. image {
  1393. width: 98rpx;
  1394. height: 98rpx;
  1395. }
  1396. margin-right: 20rpx;
  1397. }
  1398. .text-info {
  1399. display: flex;
  1400. flex-direction: column;
  1401. justify-content: center;
  1402. color: #6EB03A;
  1403. .received-count {
  1404. font-size: 38rpx;
  1405. margin-bottom: 10rpx;
  1406. letter-spacing: 2px;
  1407. }
  1408. .received-info {
  1409. font-size: 28rpx;
  1410. }
  1411. }
  1412. }
  1413. .loss {
  1414. flex-grow: 1;
  1415. height: 175rpx;
  1416. padding: 20rpx;
  1417. margin-bottom: 20rpx;
  1418. background-color: #fff;
  1419. border-radius: 20rpx;
  1420. overflow: hidden;
  1421. position: relative;
  1422. display: flex;
  1423. .text-info {
  1424. width: 100%;
  1425. display: flex;
  1426. flex-direction: column;
  1427. justify-content: center;
  1428. text-align: center;
  1429. color: #D08D5B;
  1430. .received-count {
  1431. font-size: 38rpx;
  1432. margin-bottom: 10rpx;
  1433. letter-spacing: 2px;
  1434. }
  1435. .received-info {
  1436. font-size: 28rpx;
  1437. }
  1438. }
  1439. }
  1440. }
  1441. </style>