From 88fbfce1b2d2298092321852f52302a107cf7aa4 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Fri, 7 Mar 2025 18:34:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mixins/configList.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mixins/configList.js b/mixins/configList.js index aa0485e..a79666f 100644 --- a/mixins/configList.js +++ b/mixins/configList.js @@ -23,7 +23,11 @@ export default { ...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 },