| | |
| | | loading: false, |
| | | shoppingList: [], |
| | | shoppingCartGetId: [], |
| | | methodId: [] |
| | | methodId: [], |
| | | paymentPage: false, |
| | | superior: false |
| | | }, |
| | | |
| | | /** |
| | |
| | | this.getShoppingCartProductGet() |
| | | this.getBookInfo(options.bookId) |
| | | }, |
| | | batchPurchase() { |
| | | let saleMethodIds = [] |
| | | let requests = [] |
| | | const child = this.selectComponent('#tree') |
| | | |
| | | console.log(child.data.superiorPurchaseSaleMethodId, 'superiorPurchaseSaleMethodId'); |
| | | const item = child.data.superiorPurchaseSaleMethodId |
| | | if (item) { |
| | | item.forEach(item => { |
| | | if (item.saleMethod != 0) { |
| | | saleMethodIds = item.saleMethod[0].Id |
| | | requests.push({ saleMethodIds, count: 1 }) |
| | | } |
| | | }) |
| | | console.log(requests, 'saleMethodId'); |
| | | let query = { |
| | | remarks: '云学习', |
| | | requests, |
| | | |
| | | |
| | | |
| | | } |
| | | |
| | | // 发起订单初始化请求并等待结果 |
| | | const res = app.MG.store.initOrder(query) |
| | | let bookOrdersId = res.orderNumber |
| | | // 检查订单号是否存在 |
| | | if (bookOrdersId) { |
| | | const url = '/pages/cart/paymentPage/index?orderNumber=' + bookOrdersId |
| | | wx.navigateTo({ |
| | | url |
| | | }) |
| | | } |
| | | } |
| | | |
| | | // console.log(child.data.sonPurchaseSaleMethodId, 'child.data.'); |
| | | // this.data.methodId.push(child.data.sonPurchaseSaleMethodId) |
| | | |
| | | |
| | | }, |
| | | /** |
| | | * 生命周期函数--监听页面初次渲染完成 |
| | | */ |
| | |
| | | const child = this.selectComponent('#tree') |
| | | child.checkAll() |
| | | }, |
| | | //购买按钮 |
| | | batchPurchase() { |
| | | let saleMethodIds = [] |
| | | let requests = [] |
| | | let item = [] |
| | | const child = this.selectComponent('#tree') |
| | | |
| | | console.log(child.data.superiorPurchaseSaleMethodId, 'superiorPurchaseSaleMethodId'); |
| | | console.log(child.data.sonPurchaseSaleMethodId, 'child.data'); |
| | | item = child.data.superiorPurchaseSaleMethodId |
| | | const sonItem = child.data.sonPurchaseSaleMethodId |
| | | |
| | | if (item) { |
| | | console.log(item, 'sadsdasd'); |
| | | // 拿到id |
| | | item.forEach(items => { |
| | | if (items.saleMethod != 0) { |
| | | saleMethodIds.push(items.saleMethod[0].Id) |
| | | } |
| | | }) |
| | | console.log(saleMethodIds, 'saleMethodIds'); |
| | | |
| | | app.MG.store.initOrder({ |
| | | requests: saleMethodIds.map(id => ({ |
| | | saleMethodId: id, |
| | | count: 1, |
| | | })), |
| | | }).then(res => { |
| | | if (res) { |
| | | wx.navigateTo({ |
| | | url: '/pages/cart/paymentPage/index?orderNumber=' + res.orderNumber, |
| | | }) |
| | | this.setData({ |
| | | superior: true |
| | | }) |
| | | |
| | | } |
| | | }) |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | if (item.length == 0 && sonItem) { |
| | | |
| | | |
| | | app.MG.store.initOrder({ |
| | | requests: sonItem.map(id => ({ |
| | | saleMethodId: id, |
| | | count: 1, |
| | | })), |
| | | }).then(res => { |
| | | if (res) { |
| | | wx.navigateTo({ |
| | | url: '/pages/cart/paymentPage/index?orderNumber=' + res.orderNumber, |
| | | }) |
| | | this.setData({ |
| | | paymentPage: true |
| | | }) |
| | | |
| | | } |
| | | }) |
| | | } |
| | | }, |
| | | |
| | | }) |