🐛 二维码链接出现重复的分享人参数问题修复

This commit is contained in:
x ronger 2020-09-27 23:15:03 +08:00
parent 293cf7e69c
commit 7a331787fb

View File

@ -7,7 +7,7 @@
width="20"
trigger="hover">
<el-col>
<qrcode :value="share(url)" :options="{ width: 20 }"></qrcode>
<qrcode :value="url" :options="{ width: 20 }"></qrcode>
</el-col>
<el-col class="text-center">
<span>扫码分享至微信</span>
@ -38,12 +38,6 @@
return {
wx: wx
}
},
methods: {
share(url) {
let path = url + '?s=' + this.$store.state.userInfo?.nickname
return path;
}
}
}
</script>