order_addcart.vue 39 KB

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