主管理员 3 weeks ago
parent
commit
554566d96c
2 changed files with 6 additions and 2 deletions
  1. +5
    -1
      mixins/configList.js
  2. +1
    -1
      pages/index/index.vue

+ 5
- 1
mixins/configList.js View File

@ -23,7 +23,11 @@ export default {
...this.Gshare, ...this.Gshare,
} }
if(this.userInfo.id){ 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 return o
}, },


+ 1
- 1
pages/index/index.vue View File

@ -130,7 +130,7 @@
width: 100vw; width: 100vw;
min-height: 100vh; min-height: 100vh;
background-color: $uni-bg-color; background-color: $uni-bg-color;
position: relative;
} }
.bg { .bg {
width: 100%; width: 100%;


Loading…
Cancel
Save