Browse Source

初始化

pull/4/head
前端-胡立永 3 months ago
parent
commit
88fbfce1b2
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      mixins/configList.js

+ 5
- 1
mixins/configList.js View File

@ -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
},


Loading…
Cancel
Save