Browse Source

上传

hfll
前端-胡立永 1 month ago
parent
commit
8d3c7c5ed9
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      mixins/configList.js

+ 6
- 2
mixins/configList.js View File

@ -19,11 +19,15 @@ export default {
// 1.发送给朋友 // 1.发送给朋友
onShareAppMessage(res) { onShareAppMessage(res) {
let o = { let o = {
...this.Gshare,
title : this.configList.logo_name, title : this.configList.logo_name,
...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
}, },


Loading…
Cancel
Save