From a1818199d65b08cc81cf96c0f30e8891ed4c395d Mon Sep 17 00:00:00 2001 From: fanfan Date: Tue, 13 Aug 2024 19:32:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A2=E6=9C=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/goods/detail.vue | 24 +---- pages/index/index.vue | 175 ++++++++++++++++++++----------- pages/news3/shopOrderDetails.vue | 51 +++++++-- pages/order/detail.vue | 42 +++++++- pages/user/index.vue | 67 ++++++++++-- 5 files changed, 262 insertions(+), 97 deletions(-) diff --git a/pages/goods/detail.vue b/pages/goods/detail.vue index d4c1e4d..7d13332 100644 --- a/pages/goods/detail.vue +++ b/pages/goods/detail.vue @@ -264,7 +264,7 @@ - + @@ -495,8 +495,6 @@ import * as address from '@/api/address.js' import * as CartApi from '@/api/cart' import store from '@/store' - import SettingKeyEnum from '@/common/enum/setting/Key' - import SettingModel from '@/common/model/Setting' export default { components: { SkuPopup, @@ -602,7 +600,6 @@ this.getGoodsStockInfor() this.getCartTotal() this.getProvinceAll() - this.getSetting() uni.$on("onenPrice", function(selectShop) { that.openPirce(); that.isTodo = false; @@ -636,25 +633,12 @@ } }, methods: { - // 获取商城设置 - getSetting() { - const app = this - return new Promise((resolve, reject) => { - SettingModel.data() - .then(setting => { - app.setting = setting - resolve(setting) - }) - .catch(reject) - }) - }, // 在线客服 handleContact() { // 商城客服设置 - const setting = this.setting[SettingKeyEnum.CUSTOMER.value] + const setting = this.setting // 企业微信客服 if (setting.provider == 'wxqykf') { - if (!setting.config.wxqykf.url || !setting.config.wxqykf.corpId) { this.$toast('客服链接和企业ID不能为空') return @@ -663,7 +647,6 @@ window.open(setting.config.wxqykf.url) // #endif // #ifdef MP-WEIXIN - console.log(setting.config.wxqykf.url,setting.config.wxqykf.corpId) wx.openCustomerServiceChat({ extInfo: { url: setting.config.wxqykf.url @@ -675,6 +658,8 @@ } }) // #endif + }else{ + this.$toast('暂不支持企业微信客服') } }, onLook(isLink, url) { @@ -1064,6 +1049,7 @@ .then(result => { let info = result.data.detail; this.getServeList(info.goods_id) + that.setting=result.data.detail.setting let item = this.findItemById(info.skuList, info.goods_id) if (item) { if (item.sec_start_time) { diff --git a/pages/index/index.vue b/pages/index/index.vue index 824c974..d80f04b 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,11 +1,13 @@ @@ -46,7 +54,8 @@ - + @@ -80,7 +89,8 @@ - + @@ -117,7 +127,8 @@ - + + 店内现货 @@ -192,14 +203,15 @@ - + - + 查看更多 @@ -209,7 +221,8 @@ @click="goJump('/pages/goods/detail?goodsId=' + item.goods_id)"> - + {{item.goods_price_min}} @@ -221,8 +234,8 @@ - + 查看更多 @@ -231,7 +244,8 @@ @click="goJump('/pages/goods/detail?goodsId=' + item.goods_id)"> - + {{item.goods_price_min}} @@ -246,36 +260,36 @@ - - - - - - - - - {{item.goods_name}} - - - - - - {{ item.goods_price_min>0?Number(item.goods_price_min):0.00}} - - ¥{{ item.line_price_min>0?Number(item.line_price_min):0.00 }} - - - - - + + + + + + + + {{item.goods_name}} + + + + + + {{ item.goods_price_min>0?Number(item.goods_price_min):0.00}} + + ¥{{ item.line_price_min>0?Number(item.line_price_min):0.00 }} + + + + + - - - - + - + + + 联系商家 + + - 联系商家 + @@ -421,7 +425,8 @@ cdDia: false, menushow: false, Store: '', - userInfo: {} + userInfo: {}, + setting: {} } }, /** @@ -473,6 +478,36 @@ } }, methods: { + // 在线客服 + handleContact() { + // 商城客服设置 + const setting = this.setting + // 企业微信客服 + if (setting.provider == 'wxqykf') { + if (!setting.config.wxqykf.url || !setting.config.wxqykf.corpId) { + this.$toast('客服链接和企业ID不能为空') + return + } + // #ifdef H5 + window.open(setting.config.wxqykf.url) + // #endif + // #ifdef MP-WEIXIN + console.log(setting.config.wxqykf.url, setting.config.wxqykf.corpId) + wx.openCustomerServiceChat({ + extInfo: { + url: setting.config.wxqykf.url + }, + corpId: setting.config.wxqykf.corpId, + success(res) {}, + fail(res) { + console.log(res, '企业微信') + } + }) + // #endif + } else { + this.$toast('暂不支持企业微信客服') + } + }, previewImage(index, list) { let newList = [] list.forEach(item => { @@ -573,6 +608,7 @@ app.onExtractQRCode(result.data.order.order_id) } app.order = result.data.order + app.setting = result.data.customer app.isLoading = false app.menushow = false }) diff --git a/pages/user/index.vue b/pages/user/index.vue index bfab8eb..bd9a0ea 100644 --- a/pages/user/index.vue +++ b/pages/user/index.vue @@ -28,10 +28,20 @@ - + + + + 消息 + + + + 消息 + + + + 消息 - - - - 客服 + + + + 客服 + - + + + + 客服 + + + + @@ -708,7 +727,8 @@ recommendPage: 1, recommendFinish: false, recommendLoadTitle: '', - is_show_open_shop_buttun: null + is_show_open_shop_buttun: null, + setting: {} } }, onLoad() { @@ -718,6 +738,7 @@ this.goodsRecommend = []; this.getSuggest() this.is_show_open_shop_buttun = uni.getStorageSync("Store").storeInfo.is_show_open_shop_buttun + this.setting = uni.getStorageSync('Setting').customer }, onShow(options) { if (uni.getStorageSync("userInfo").user_id) { @@ -748,6 +769,36 @@ } }, methods: { + // 在线客服 + handleContact() { + // 商城客服设置 + const setting = this.setting + // 企业微信客服 + if (setting.provider == 'wxqykf') { + if (!setting.config.wxqykf.url || !setting.config.wxqykf.corpId) { + this.$toast('客服链接和企业ID不能为空') + return + } + // #ifdef H5 + window.open(setting.config.wxqykf.url) + // #endif + // #ifdef MP-WEIXIN + console.log(setting.config.wxqykf.url, setting.config.wxqykf.corpId) + wx.openCustomerServiceChat({ + extInfo: { + url: setting.config.wxqykf.url + }, + corpId: setting.config.wxqykf.corpId, + success(res) {}, + fail(res) { + console.log(res, '企业微信') + } + }) + // #endif + }else{ + this.$toast('暂不支持企业微信客服') + } + }, createImge(index, w, h) { const that = this; ctx.fillRect(0, 0, w / that.devicePixelRatio, h / that.devicePixelRatio); @@ -2533,4 +2584,4 @@ } } - +