cart.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822
  1. <template>
  2. <view class="uni-flex uni-column cart jz_cart jz_merchant">
  3. <view class="uni-flex uni-column" v-if="!ok">
  4. <view class="uni-flex cart-empty">
  5. <view class="uni-flex uni-column">
  6. <view class="uni-flex justify-align-center">
  7. <image src="../../../static/cart/cartempty.png" mode="widthFix"></image>
  8. </view>
  9. <view class="uni-flex justify-align-center cart-empty-title">购物车空空如也~</view>
  10. <view class="uni-flex justify-align-center cart-empty-title" @click="goMyAgency" style="margin-top: 12upx; font-size: 28upx; background-color: #CA0000;border-radius: 8upx; color: #FFFFFF;">
  11. 代理商品一键下单<image src="../../../static/cart/arrow1.png" mode="widthFix" style="margin-left: 4upx; height: 24upx; width: 24upx;"></image>
  12. </view>
  13. </view>
  14. </view>
  15. <!-- <recommend :items="items" :src="src"></recommend> -->
  16. <view class="recommend uni-flex uni-column">
  17. <view class="push_product_title uni-flex justify-align-center">
  18. <image :src="src"></image>
  19. <view class="push_title">为你推荐</view>
  20. </view>
  21. <view class="uni-flex lists-wrap">
  22. <view class="uni-flex uni-row list">
  23. <view class="uni-product-list" id="list">
  24. <view class="uni-product" v-for="(item, key) in items" :key="key" @click="goProduct(item.id)">
  25. <view class="image-view uni-flex justify-align-center">
  26. <!-- <image :src="item.pic"></image> -->
  27. <image class="image" :class="{lazy:!item.display}" :id="'lazy'+ key" :data-index="0" @load="imageOnLoad(item)"
  28. :src="item.display?item.pic:''" />
  29. <view class="loadbox" :class="{loaded:item.loaded}">
  30. <view class="load"></view>
  31. </view>
  32. </view>
  33. <view class="uni-flex uni-column uni-product-title-wrap">
  34. <view class="uni-product-title uni-flex-item">{{ item.title }}</view>
  35. <view class="product_details uni-flex uni-row">
  36. {{item.profile}}
  37. </view>
  38. <view class="uni-flex-item prices uni-flex">
  39. <view class="prices-salePrice">¥{{ item.salePrice }}</view>
  40. <view class="prices-cart">
  41. <image src="../../../static/category/cart.png"></image>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="uni-flex" v-if="ok">
  52. <view class="uni-flex uni-column uni-flex-item cart-list">
  53. <!-- 列表循环 -->
  54. <view class="uni-flex uni-row " v-for="(item, m) in json" :key="m" v-if="item.show">
  55. <view class="uni-flex uni-column item-shop uni-flex-item">
  56. <!-- 商家 -->
  57. <!-- <view class="uni-flex uni-row item-shop-name">
  58. <view class="uni-flex item-sel">
  59. <view :class="[yuan,{bg:item.select}]" @click.stop="dpSelected(m)"></view>
  60. </view>
  61. <view class="uni-flex dp">{{item.sj}}</view>
  62. </view> -->
  63. <!-- 图片产品名称价格数量展示 -->
  64. <view class="uni-flex uni-row cart-item" v-for="(pl, index) in json[m].items" :key="index" v-if="pl.show">
  65. <!-- 选择按钮 -->
  66. <view class="uni-flex item-sel">
  67. <view :class="[yuan, { bg: pl.select }]" @click="selected(m, index, $event)"><text v-if="pl.select" class="gou"></text></view>
  68. </view>
  69. <!-- 商品图片 -->
  70. <view class="uni-flex uni-flex-item cart-item-left">
  71. <view class="uni-flex uni-flex-item item-padding item-img" @click="goProduct(pl.id)">
  72. <image mode="widthFix" :src="pl.img"></image>
  73. </view>
  74. <view class="uni-flex uni-column uni-flex-item2 item-padding">
  75. <view class="uni-flex uni-flex-item title">{{ pl.cp }}</view>
  76. <view class="uni-flex uni-row cart-attr" @click="changeAttr(m,index)">
  77. <view class="uni-flex uni-row" style="background-color: #F2F2F2;padding: 8upx;height: 40upx;overflow: hidden; border-radius: 8upx;">
  78. <view class="uni-flex" v-for="(attr,n) in pl.attr" :key="n">
  79. <text v-if="(n+1<pl.attr.length)" class="text">{{attr.value}};</text>
  80. <text v-if="(n+1==pl.attr.length)" class="text">{{attr.value}}</text>
  81. </view>
  82. <view class="uni-flex" style=" margin-left: 4upx; width: 30upx;align-items: center;justify-content: center;">
  83. <image src="../../../static/cart/arrow.png" mode="widthFix"></image>
  84. </view>
  85. </view>
  86. </view>
  87. <view class="uni-flex uni-row uni-flex-item">
  88. <view class="uni-flex uni-flex-item3 cartpriceBg">¥{{ pl.jg }}</view>
  89. <view class="uni-flex uni-row numbers uni-flex-item2">
  90. <view class="uni-flex number" @click="reduce(m, index)">-</view>
  91. <input class="uni-flex" disabled="disabled" type="text" v-model="pl.sl" />
  92. <view class="uni-flex number" @click="add(m, index)">+</view>
  93. </view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. <view class="uni-flex uni-row header">
  102. <view class="uni-flex uni-flex-item">
  103. <view class="uni-flex uni-flex-item5">共{{ all }}件宝贝</view>
  104. <view v-show="open" class="uni-flex manage uni-flex-item" @click="manage()">管理</view>
  105. <view v-show="!open" class="uni-flex manage uni-flex-item" @click="manage()">完成</view>
  106. </view>
  107. </view>
  108. <view class="uni-flex uni-row footer">
  109. <view class="uni-flex uni-flex-item ">
  110. <view class="uni-flex item-sel ">
  111. <view :class="[yuan, { bg: allSelect }]" @click="AllSelect()"><text v-if="allSelect" class="gou"></text></view>
  112. </view>
  113. <view class="uni-flex uni-flex-item itemAll">全选</view>
  114. <view class="uni-flex uni-flex-item3">¥{{ allPrice }}</view>
  115. <view class="uni-flex uni-flex-item2 justify-align-center">
  116. <view v-show="open" class="uni-flex uni-flex-item btn" @click="js()" :class="{'activeBg':bgChange}">结算({{ allNum }})</view>
  117. <view v-show="!open" class="uni-flex uni-flex-item btn-hollow" :class="{'activeDel':delBgChange}" @click="delAll()">删除({{ allNum }})</view>
  118. </view>
  119. </view>
  120. </view>
  121. </view>
  122. <attr-popup :show="showAttr" @hidePopup="hidePopup" :productItems="productItems" :toptitle="toptitle"></attr-popup>
  123. <backTop :src="backTop.src" :scrollTop="backTop.scrollTop"></backTop>
  124. <attr :show="showAttr1" ref="child1" :popStock="stock" :staticStock="stock" :user="user" :saleMode="saleMode" :max="max"
  125. :weight="weight" :mode="mode" :merchant="merchant" :expressFees="expressFees" :number="stock" :popUnitNum="unitNum"
  126. :unit="unit" :popIndex="popIndex" :title="title" :pic="pic" :sale="sale" :popMarketPrice="marketPrice" :popSalePrice="salePrice"
  127. :pid="id" :hideAttr="hideAttr" :attr="attr" :popupAttr="popupAttr" :popCarts="json" @selAttrPic="selAttrPic"
  128. @ModiAttr="ModiAttr" @hidePopup1="hidePopup1"></attr>
  129. </view>
  130. </template>
  131. <script>
  132. import {
  133. mapState,
  134. mapMutations
  135. } from 'vuex';
  136. import attrPopup from '../../../components/cartcommon/uni-popup-public.vue';
  137. import cart from '../../../common/cart.js';
  138. import util from '../../../common/util.js';
  139. import attr from '../../../components/uni-popup-attr.vue';
  140. import backTop from '@/components/uni-top.vue';
  141. export default {
  142. computed: {
  143. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  144. },
  145. data() {
  146. return {
  147. backTop: {
  148. src: '../../../static/top.png',
  149. scrollTop: 0
  150. },
  151. delBgChange: false,
  152. bgChange: false,
  153. src: '../../../static/pay04.png',
  154. yuan: 'yuan',
  155. allPrice: '0.00',
  156. allSelect: false,
  157. Show: -1,
  158. open: true,
  159. ok: false,
  160. allNum: 0,
  161. all: 0,
  162. json: [],
  163. user: {},
  164. items: [],
  165. showAttr: false,
  166. productItems: [],
  167. toptitle: '',
  168. windowHeight: 0,
  169. //attr
  170. product: {},
  171. showAttr1: false,
  172. stock: 0,
  173. saleMode: 0,
  174. mode: '',
  175. max: '',
  176. unit: '',
  177. unitNum: 1,
  178. weight: '',
  179. merchant: {},
  180. expressFees: [],
  181. title: '',
  182. pic: '',
  183. sale: {
  184. mode: '0'
  185. },
  186. salePrice: '',
  187. marketPrice: '',
  188. id: '',
  189. hideAttr: true,
  190. attr: [],
  191. popupAttr: {},
  192. attrPic: {},
  193. popIndex: 0,
  194. //attr
  195. };
  196. },
  197. onShow() {
  198. this.init();
  199. },
  200. onLoad(e) {
  201. this.windowHeight = uni.getSystemInfoSync().windowHeight;
  202. this.init();
  203. },
  204. onPageScroll(e) {
  205. this.backTop.scrollTop = e.scrollTop;
  206. util.loads(this.items, 'list', this.windowHeight);
  207. },
  208. onPullDownRefresh() {
  209. this.init();
  210. setTimeout(function() {
  211. uni.stopPullDownRefresh();
  212. }, 1000);
  213. },
  214. components: {
  215. attrPopup,
  216. attr,
  217. backTop
  218. },
  219. methods: {
  220. goMyAgency() {
  221. uni.navigateTo({
  222. url: '../myAgency/index'
  223. })
  224. },
  225. selAttrPic(e) {
  226. if (this.attrPic) {
  227. for (let i = 0; i < this.attrPic.length; i++) {
  228. if (this.attrPic[i].name == e) {
  229. this.pic = this.domain + this.attrPic[i].url;
  230. break;
  231. }
  232. }
  233. }
  234. },
  235. ModiAttr(js) {
  236. this.hidePopup1();
  237. this.json = this.cartSort(js);;
  238. cart.updateCart(this.json);
  239. },
  240. cartSort(json) {
  241. for (let i = 0; i < json.length; i++) {
  242. json[i].items.sort(function(a, b) {
  243. return a.id - b.id
  244. });
  245. }
  246. return json;
  247. },
  248. hidePopup1() {
  249. this.showAttr1 = false;
  250. },
  251. changeAttr(m, index) {
  252. this.id = this.json[m].items[index].id;
  253. this.getProduct();
  254. this.popIndex = index;
  255. },
  256. getProduct() {
  257. uni.showLoading({
  258. title: '加载中'
  259. });
  260. uni.request({
  261. url: this.webUrl + 'Product',
  262. method: 'POST',
  263. data: {
  264. id: this.id,
  265. userid: this.userid
  266. },
  267. header: {
  268. 'content-type': 'application/x-www-form-urlencoded'
  269. },
  270. success: res => {
  271. uni.hideLoading();
  272. if (res.data.result.isSuccess) {
  273. this.product = res.data.result.product;
  274. this.saleMode = this.product.saleMode;
  275. this.salePrice = this.product.salePrice.toFixed(2);
  276. this.marketPrice = this.product.marketPrice.toFixed(2);
  277. this.stock = this.product.stock;
  278. this.max = this.product.stock;
  279. this.pic = this.product.pic;
  280. this.unitNum = this.product.unitNum;
  281. this.unit = this.product.unit;
  282. this.title = this.product.title;
  283. this.merchant = res.data.result.merchant;
  284. this.expressFees = res.data.result.expressFees;
  285. this.weight = this.product.weight;
  286. if (this.product.attributeList != null) {
  287. let jsonAttr = JSON.parse(this.product.attributeList);
  288. this.popupAttr = jsonAttr;
  289. this.attr = [];
  290. for (let i = 0; i < this.popupAttr.length; i++) {
  291. this.attr.push(JSON.parse('{"name":"' + this.popupAttr[i].attrName + '","value":""}'));
  292. }
  293. }
  294. this.sale.mode = 0;
  295. this.max = this.stock;
  296. this.showAttr1 = true;
  297. this.mode = 3;
  298. this.$refs.child1.groupCartInit();
  299. } else {
  300. uni.showModal({
  301. title: '系统提示',
  302. content: res.data.result.resultInfo
  303. });
  304. }
  305. },
  306. fail: () => {},
  307. complete: () => {}
  308. });
  309. },
  310. goProduct(id) {
  311. uni.navigateTo({
  312. url: '../../merchant/product/product?id=' + id
  313. })
  314. },
  315. init() {
  316. if (!this.hasLogin) {
  317. uni.navigateTo({
  318. url: '../login/login'
  319. });
  320. } else {
  321. uni.showLoading({
  322. title: "加载中"
  323. })
  324. this.delBgChange = false;
  325. this.bgChange = false;
  326. this.user = JSON.parse(this.jyyUser);
  327. this.json = this.cartSort(cart.getCart());
  328. console.log(this.json)
  329. this.userid = this.user.id;
  330. if (this.json.length > 0) {
  331. this.ok = true;
  332. this.reSetSel();
  333. this.count();
  334. } else {
  335. this.getDate();
  336. this.ok = false;
  337. }
  338. uni.hideLoading();
  339. }
  340. },
  341. hidePopup() {
  342. this.showAttr = false;
  343. },
  344. manage() {
  345. this.open = !this.open;
  346. },
  347. getDate() {
  348. uni.request({
  349. url: this.webUrl + 'Recommend',
  350. method: 'POST',
  351. data: {
  352. userid: this.userid
  353. },
  354. header: {
  355. 'content-type': 'application/x-www-form-urlencoded'
  356. },
  357. success: res => {
  358. this.items = res.data.result.resultInfo;
  359. setTimeout(() => {
  360. util.loads(this.items, 'list', this.windowHeight);
  361. }, 300)
  362. },
  363. fail: () => {},
  364. complete: () => {}
  365. });
  366. },
  367. imageOnLoad(e) {
  368. e.loaded = true;
  369. },
  370. selected(m, index) {
  371. let select = this.json[m].items[index].select;
  372. this.json[m].items[index].select = !select;
  373. //this.cpIndex = index;
  374. let length = this.json[m].items.length;
  375. //商品全部选中,店铺才选中
  376. let select1 = true;
  377. for (let i = 0; i < length; i++) {
  378. //叠加积累有false就为false
  379. select1 *= this.json[m].items[i].select;
  380. }
  381. if (select1 == true) {
  382. this.json[m].select = true;
  383. } else {
  384. this.json[m].select = false;
  385. }
  386. //判断商品是否全部选中,是的话,全选也选中
  387. let json = this.json.length;
  388. let all = true;
  389. for (let i = 0; i < json; i++) {
  390. all *= this.json[i].select;
  391. }
  392. if (all == true) {
  393. this.allSelect = true;
  394. }
  395. this.allSl(); //商品数量
  396. this.cancel(m, index); //商品没有全部选中就取消全选
  397. this.price(); //总价
  398. },
  399. //结算商品数量
  400. allSl() {
  401. let json = this.json.length;
  402. let js = 0;
  403. for (let i = 0; i < json; i++) {
  404. let arr = this.json[i].items;
  405. for (let j = 0; j < arr.length; j++) {
  406. if (this.json[i].items[j].show) {
  407. js += this.json[i].items[j].select;
  408. }
  409. }
  410. }
  411. this.allNum = js;
  412. if (this.allNum > 0) {
  413. this.bgChange = true;
  414. } else {
  415. this.bgChange = false;
  416. }
  417. },
  418. count() {
  419. let json = this.json.length;
  420. let js = 0;
  421. for (let i = 0; i < json; i++) {
  422. let arr = this.json[i].items;
  423. for (let j = 0; j < arr.length; j++) {
  424. js++;
  425. }
  426. }
  427. this.all = js;
  428. },
  429. //计算价格
  430. price() {
  431. let all = 0;
  432. for (let j = 0; j < this.json.length; j++) {
  433. //点击循环有多少个商家
  434. let arr = this.json[j].items; //获取商家下面的列表产品
  435. for (let i = 0; i < arr.length; i++) {
  436. //循环产品列表
  437. if (arr[i].select === true) {
  438. //列表里面那些为true
  439. all += arr[i].jg * arr[i].sl; //为true的价格加起来,为总价
  440. }
  441. }
  442. }
  443. this.allPrice = all.toFixed(2); //返回数据
  444. if (this.allPrice > 0) {
  445. this.delBgChange = true;
  446. } else {
  447. this.delBgChange = false;
  448. }
  449. },
  450. //选择属于某个商家地所有产品
  451. dpSelected(index) {
  452. //商家选中
  453. let select = this.json[index].select;
  454. this.json[index].select = !select;
  455. let arr = this.json[index].items; //获取店铺下面的产品数量
  456. for (let i = 0; i < arr.length; i++) {
  457. //循环产品数量
  458. if (arr[i].select == false) {
  459. //判断有那些产品未选中
  460. arr[i].select = true; //选中咯
  461. }
  462. if (this.json[index].select === false) {
  463. //当店铺取消全选的时候
  464. arr[i].select = false; //产品全部没选中
  465. }
  466. }
  467. let select1 = true; //创建一个为真的变量
  468. for (let i = 0; i < this.json.length; i++) {
  469. if (this.json[i].select == false) {
  470. //如果有商家没选中全选则为false
  471. this.allSelect = false;
  472. }
  473. select1 *= this.json[i].select;
  474. }
  475. if (select1 == true) {
  476. this.allSelect = true;
  477. }
  478. this.allSl(); //商品数量
  479. this.price();
  480. },
  481. AllSelect() {
  482. let selected = this.allSelect;
  483. this.allSelect = !selected;
  484. let dp = this.json.length; //获取店铺数量
  485. for (let i = 0; i < dp; i++) {
  486. //循环店铺
  487. let arr = this.json[i].items; //获取每个店铺的商品
  488. for (let j = 0; j < arr.length; j++) {
  489. //循环每个店铺里面的商品为选中
  490. if (this.json[i].items[j].show) {
  491. if (this.allSelect == true) {
  492. this.json[i].items[j].select = true;
  493. }
  494. if (this.allSelect == false) {
  495. this.json[i].items[j].select = false;
  496. }
  497. }
  498. }
  499. if (this.json[i].show) {
  500. if (this.allSelect == true) {
  501. this.json[i].select = true;
  502. } else {
  503. this.json[i].select = false;
  504. }
  505. }
  506. }
  507. this.allSl(); //商品数量
  508. this.price();
  509. },
  510. //商品没有全部选中就取消全选
  511. cancel(m, index) {
  512. if (this.json[m].items[index].select == false) {
  513. this.allSelect = false;
  514. }
  515. },
  516. //商品--
  517. reduce(m, index) {
  518. if (this.json[m].items[index].sl <= 1) {
  519. return;
  520. }
  521. this.json[m].items[index].sl--;
  522. this.price();
  523. cart.updateCart(this.json);
  524. },
  525. //商品++
  526. add(m, index) {
  527. this.json[m].items[index].sl++;
  528. let id = this.json[m].items[index].id;
  529. let attrMode = this.json[m].items[index].attrMode;
  530. let count = 0;
  531. let stock = 0;
  532. if (attrMode) {
  533. for (let j = 0; j < this.json[m].items.length; j++) {
  534. if (this.json[m].items[j].attrMode == true & this.json[m].items[j].id == id) {
  535. count += this.json[m].items[j].unitNum * this.json[m].items[j].sl;
  536. }
  537. }
  538. stock = this.json[m].items[index].stock;
  539. } else {
  540. count = this.json[m].items[index].sl * this.json[m].items[index].unitNum;
  541. stock = this.json[m].items[index].attrStock;
  542. }
  543. if (count >= stock) {
  544. uni.showToast({
  545. title: '库存不足',
  546. icon: 'none'
  547. });
  548. this.json[m].items[index].sl--;
  549. } else {
  550. // this.json[m].items[index].jg = (this.json[m].items[index].sl * this.json[m].items[index].unitNum * this.json[m].items[
  551. // index].unitPrice).toFixed(2);
  552. this.price();
  553. cart.updateCart(this.json);
  554. }
  555. },
  556. delAll() {
  557. if (this.delBgChange) {
  558. const jsons = [];
  559. let f = false;
  560. for (let j = 0; j < this.json.length; j++) {
  561. let arr = this.json[j].items;
  562. let items = [];
  563. for (let i = 0; i < arr.length; i++) {
  564. if (arr[i].select === false) {
  565. items.push({
  566. id: arr[i].id,
  567. cp: arr[i].cp,
  568. jg: arr[i].jg,
  569. img: arr[i].img,
  570. sl: arr[i].sl,
  571. attr: arr[i].attr,
  572. unitNum: arr[i].unitNum,
  573. unit: arr[i].unit,
  574. attrMode: arr[i].attrMode,
  575. select: false,
  576. show: true,
  577. weight: arr[i].weight,
  578. expressFees: arr[i].expressFees
  579. });
  580. } else {
  581. f = true;
  582. }
  583. }
  584. if (items.length > 0) {
  585. const item = {
  586. mid: this.json[j].mid,
  587. sj: this.json[j].sj,
  588. no: '',
  589. totalPrice: '',
  590. select: false,
  591. show: true,
  592. message: '',
  593. expressCost: '',
  594. items: items,
  595. count: '',
  596. sale: this.json[j].sale
  597. };
  598. jsons.push(item);
  599. this.allPrice = '0.00';
  600. this.allNum = 0;
  601. }
  602. }
  603. if (!f) {
  604. uni.showToast({
  605. icon: 'none',
  606. title: '请选择商品'
  607. });
  608. } else {
  609. let that = this;
  610. uni.showModal({
  611. title: '提示',
  612. content: '是否删除',
  613. success: function(res) {
  614. if (res.confirm) {
  615. that.json = jsons;
  616. cart.updateCart(that.json);
  617. if (jsons.length == 0) {
  618. that.ok = false;
  619. that.init()
  620. }
  621. that.allPrice = '0.00';
  622. that.allNum = 0;
  623. that.delBgChange = false;
  624. that.bgChange = false;
  625. } else if (res.cancel) {
  626. console.log('用户点击取消');
  627. }
  628. }
  629. });
  630. }
  631. }
  632. },
  633. reSetSel() {
  634. for (var i = 0; i < this.json.length; i++) {
  635. this.json[i].select = false;
  636. for (var j = 0; j < this.json[i].items.length; j++) {
  637. this.json[i].items[j].select = false;
  638. }
  639. }
  640. this.allSelect = false;
  641. this.allPrice = '0.00';
  642. this.allNum = 0;
  643. this.open = true;
  644. },
  645. //结算支付
  646. js() {
  647. if (this.bgChange) {
  648. if (this.allPrice == 0) {
  649. uni.showToast({
  650. icon: 'none',
  651. title: '请选择商品'
  652. });
  653. } else {
  654. const jsons = [];
  655. let f = false;
  656. for (let j = 0; j < this.json.length; j++) {
  657. let arr = this.json[j].items;
  658. let items = [];
  659. for (let i = 0; i < arr.length; i++) {
  660. if (arr[i].select === true) {
  661. items.push({
  662. id: arr[i].id,
  663. cp: arr[i].cp,
  664. jg: arr[i].jg,
  665. img: arr[i].img,
  666. sl: arr[i].sl,
  667. attr: arr[i].attr,
  668. unitNum: arr[i].unitNum,
  669. weight: arr[i].weight,
  670. unit: arr[i].unit,
  671. attrMode: arr[i].attrMode
  672. });
  673. } else {
  674. f = true;
  675. }
  676. }
  677. if (items.length > 0) {
  678. const item = {
  679. mid: this.json[j].mid,
  680. sj: this.json[j].sj,
  681. no: '',
  682. totalPrice: '',
  683. message: '',
  684. expressCost: '',
  685. items: items,
  686. count: '',
  687. sale: this.json[j].sale
  688. };
  689. jsons.push(item);
  690. }
  691. }
  692. uni.showLoading({
  693. title: '订单保存中'
  694. });
  695. uni.request({
  696. url: this.webUrl + 'SaveOrder',
  697. method: 'POST',
  698. data: {
  699. user: JSON.stringify(this.user),
  700. data: JSON.stringify(jsons)
  701. },
  702. header: {
  703. 'content-type': 'application/x-www-form-urlencoded'
  704. },
  705. success: res => {
  706. uni.hideLoading();
  707. if (res.data.result.isSuccess) {
  708. cart.setOrder(res.data.orders);
  709. //cart.updateCart([]);
  710. uni.navigateTo({
  711. url: '../order/order'
  712. });
  713. } else {
  714. this.showAttr = true;
  715. this.toptitle = res.data.result.resultInfo;
  716. this.productItems = res.data.result.resultInfo2;
  717. // uni.showToast({
  718. // title: res.data.result.resultInfo,
  719. // icon: 'none'
  720. // });
  721. }
  722. },
  723. fail: () => {},
  724. complete: () => {}
  725. });
  726. }
  727. }
  728. }
  729. }
  730. };
  731. </script>
  732. <style>
  733. .recommend {
  734. overflow-x: hidden;
  735. }
  736. .push_product_title image {
  737. width: 100%;
  738. height: 48rpx;
  739. }
  740. .push_product_title .push_title {
  741. width: 100%;
  742. position: absolute;
  743. left: 50%;
  744. margin-left: -30rpx;
  745. color: #333333;
  746. }
  747. .uni-flex-item2 input {
  748. display: inline-block;
  749. width: 20upx;
  750. }
  751. page {
  752. background: #ffffff;
  753. }
  754. .jz_cart .btn {
  755. border-radius: 6upx;
  756. background: #cdcdcd;
  757. letter-spacing: 4upx;
  758. }
  759. .jz_cart .activeBg {
  760. background: #dd0101;
  761. }
  762. .jz_cart .activeDel {
  763. background: #dd0101;
  764. }
  765. .gou {
  766. display: block;
  767. text-align: center;
  768. color: #ffffff;
  769. width: 40upx;
  770. height: 40upx;
  771. line-height: 40upx;
  772. }
  773. .push_product_title {
  774. width: 100%;
  775. padding: 30upx 0 0 0;
  776. position: relative;
  777. }
  778. .push_product_title image {
  779. width: 100%;
  780. height: 48upx;
  781. }
  782. .push_product_title .push_title {
  783. width: 100%;
  784. position: absolute;
  785. left: 50%;
  786. margin-left: -30upx;
  787. color: #333333;
  788. }
  789. </style>