From 5a8347e8a64bd6b5634f7177ca25c43a6baac7f3 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期三, 04 十二月 2024 14:26:38 +0800 Subject: [PATCH] 商品扫码激活 --- pages/scanResult/index.js | 38 +++++++++++++++++++++++--------------- 1 files changed, 23 insertions(+), 15 deletions(-) diff --git a/pages/scanResult/index.js b/pages/scanResult/index.js index 1164b30..e9acf13 100644 --- a/pages/scanResult/index.js +++ b/pages/scanResult/index.js @@ -1,6 +1,5 @@ // pages/index/scanResult/index.js const app = getApp() - Page({ /** @@ -15,7 +14,9 @@ isOther: false, activeCodeAndStoreChannelLinks: [], activeInfo: null, - description: "" + description: "", + itemType: '', + goodsData: '' }, /** @@ -29,14 +30,17 @@ result, textValue: result.type == "PromoteCode" ? '棰嗗彇' : '婵�娲�' }) - this.getRules(); + // this.getRules(); this.getProductByCode(); } else { + debugger this.setData({ isOther: true }) } } catch (error) { + console.log(error); + debugger this.setData({ isOther: true }) @@ -139,9 +143,7 @@ showCancel: false, success(res) { if (res.confirm) { - setTimeout(() => { - wx.navigateBack() - }, 2500); + wx.navigateBack() } } }) @@ -161,7 +163,13 @@ .then(res => { try { const list = JSON.parse(res.config); + console.log('code', res, list); if (this.data.result) { + + const type = res.saleMethodList[0].type + this.setData({ + goodsData: res, + }) this.getProductListById(list); } if (res?.activeCodeAndStoreChannelLinks) { @@ -206,19 +214,15 @@ app.MG.store .getProductList({ queryType: "*", - subAccess: [{ - StoreRefCode: app.config.learnPlatformGoodsStore, // 榛樿鍟嗗搧搴� - Path: "", - Type: "*", - }, ], + // subAccess: [{ + // StoreRefCode: app.config.learnPlatformGoodsStore, // 榛樿鍟嗗搧搴� + // Path: "", + // Type: "*", + // }, ], sort: { CreateDate: "Desc", }, fields: { - tourism_author: [], - tourism_paperPrice: [], - tourism_publicationDate: [], - tourism_ISBN: [], "Id=": ids.map(item => item.id + ""), }, paging: { @@ -231,9 +235,13 @@ }) .then(res => { res.datas.map(item => { + item.name = item.name + '-' + this.data.goodsData.saleMethodList[0].name item.price ? item.price = (item.price).toFixed(2) : ""; item.oldPrice ? item.oldPrice = (item.oldPrice).toFixed(2) : ""; + item.icon ? item.icon = item.icon : item.icon = "/static/images/default-book-img.png", + item.itemType = this.data.goodsData.saleMethodList[0].type == 'createProductFolderSaleMethod' ? '鐩綍' : this.data.goodsData.saleMethodList[0].type == 'createProductItemSaleMethod' ? '璧勬簮' : '鐢靛瓙涔�' }) + console.log(1, res.datas[0]); that.setData({ productInfo: res.datas }) -- Gitblit v1.9.1