diff --git a/config/api.js b/config/api.js index 2bf60da..ff00800 100644 --- a/config/api.js +++ b/config/api.js @@ -7,10 +7,14 @@ const dev = { // common: "http://192.168.0.100:8890", // buyer: "http://192.168.0.100:8888", common: "https://common-api.pickmall.cn", - buyer: "https://buyer-api.pickmall.cn", + buyer: "https://buyer-api.pickmall.cn", + // common: 'http://192.168.0.109:8890', + // buyer: 'http://192.168.0.109:8888', }; // 生产环境 -const prod = { +const prod = { + // common: 'http://192.168.0.109:8890', + // buyer: 'http://192.168.0.109:8888', common: "https://common-api.pickmall.cn", buyer: "https://buyer-api.pickmall.cn", }; diff --git a/pages/product/customerservice/index.vue b/pages/product/customerservice/index.vue index a3356d7..1d4793b 100644 --- a/pages/product/customerservice/index.vue +++ b/pages/product/customerservice/index.vue @@ -14,28 +14,29 @@ methods: { }, - onLoad () { + onLoad (e) { + const params = JSON.parse((decodeURIComponent(e.params))) chat.init({ - sign: '4a971f4f4ff9637cd9286a0197b0573bf2f65de052c21791f90d4235fca41456e1cc145075567f5f47b8e13c895f3fc8cacec5789f9afee8df670f7cbe5c0f82', //必传,公司渠道唯一标识,腾讯云智服后台系统创建「小程序插件」渠道后,在「渠道管理」获取 - token: '', //非必填 - uid: '', //用户唯一标识,如果没有则不填写,默认为空 - title: 'lilishop自营店', //非必填,如果未填写,默认获取配置标题 + sign: params.mpSign, //必传,公司渠道唯一标识,腾讯云智服后台系统创建「小程序插件」渠道后,在「渠道管理」获取 + token: params.token, //非必填 + uid: params.uuid, //用户唯一标识,如果没有则不填写,默认为空 + title: params.storageName, //非必填,如果未填写,默认获取配置标题 isRMB: '', //商品是否显示人民币¥,默认显示,false不显示 data: { //参数c1,c2,c3,c4,c5用于传递用户信息,参数d1,d2,d3,d4,d5,d6用于传递商品信息,默认为空 - c1: '1', - c2: '2', - c3: '3', - c4: '4', - c5: '5', - d1: '这是描述', //商品描述 - d2: '122.00', //价格 - d3: '150.00', //原价格 - d4: '', //展示商品图片链接 + c1: '', + c2: '', + c3: '', + c4: '', + c5: '', + d1: params.goodsName, //商品描述 + d2: params.price, //价格 + d3: '', //原价格 + d4: params.goodsImg, //展示商品图片链接 d5: '', //商品跳转链接 - d6: '', //商品id + d6: params.goodsId, //商品id data: ''//加密串,非必填 }, - viewUrl(res){ //需要跳转的链接,则需要配置一个web-view + viewUrl(res){ //需要跳转外部链接,则需要配置一个web-view if (res) { wx.navigateTo({ url: '/pages/webview/index?href=' + res diff --git a/pages/product/goods.vue b/pages/product/goods.vue index ec6ec8d..be562cd 100644 --- a/pages/product/goods.vue +++ b/pages/product/goods.vue @@ -126,16 +126,16 @@ {{ selectedGoods.spec.specName }}-{{ selectedGoods.spec.specValue }} - 默认 - - - - - - - 送至 - - {{ + 默认 + + + + + + + 送至 + + {{ delivery.consigneeAddressPath | clearStrComma }} 暂无地址信息 @@ -878,10 +878,10 @@ export default { diff --git a/pages/product/product/shop/-shop.vue b/pages/product/product/shop/-shop.vue index de42716..a2c90dd 100644 --- a/pages/product/product/shop/-shop.vue +++ b/pages/product/product/shop/-shop.vue @@ -148,7 +148,16 @@ export default { font-weight: 700; font-size: 28rpx; line-height: 24px; + margin-left: 10px; } + .desc { + font-size: 12px; + color: #999; + margin-left: 10px; + text{ + margin-right: 10px; + } + } } .to-store-btn { diff --git a/pages/product/product/style.scss b/pages/product/product/style.scss index cf8817c..7a28f6b 100644 --- a/pages/product/product/style.scss +++ b/pages/product/product/style.scss @@ -136,6 +136,19 @@ page { > .headerList { flex: 8; } + > div:nth-child(2) { + flex: 1; + .headerList{ + display: flex; + div{ + flex: 1; + } + } + } + > div:nth-child(3) { + width: 100rpx; + } + justify-content: space-between; }