From 8d3c7c5ed93a460ef496dcb5473bc270e755b648 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Fri, 7 Mar 2025 18:35:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mixins/configList.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mixins/configList.js b/mixins/configList.js index b9e66aa..a79666f 100644 --- a/mixins/configList.js +++ b/mixins/configList.js @@ -19,11 +19,15 @@ export default { // 1.发送给朋友 onShareAppMessage(res) { let o = { - ...this.Gshare, title : this.configList.logo_name, + ...this.Gshare, } if(this.userInfo.id){ - o.path = this.Gshare.path + '?shareId=' + this.userInfo.id + if(this.Gshare.path.includes('?')){ + o.path += '&shareId=' + this.userInfo.id + }else{ + o.path += '?shareId=' + this.userInfo.id + } } return o },