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 }, 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%;