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 1/2] =?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 }, From eede90a186c345fc9d332aeabfa4cab495d6cce2 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Fri, 16 May 2025 10:36:34 +0800 Subject: [PATCH 2/2] =?UTF-8?q?style:=20=E4=B8=BA=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=AE=B9=E5=99=A8=E6=B7=BB=E5=8A=A0=E7=9B=B8=E5=AF=B9=E5=AE=9A?= =?UTF-8?q?=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在页面容器的样式中添加 `position: relative`,以确保子元素的定位行为符合预期 --- pages/index/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index/index.vue b/pages/index/index.vue index 050b21d..ced0c65 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -130,7 +130,7 @@ width: 100vw; min-height: 100vh; background-color: $uni-bg-color; - + position: relative; } .bg { width: 100%;