This commit is contained in:
wuhui_zzw 2024-02-01 11:17:42 +08:00
parent 3808ba29cc
commit db6eb3d376
1 changed files with 21 additions and 1 deletions

View File

@ -34,7 +34,27 @@ export default {
computed: {
...mapGetters(['isLogin', 'userInfo', 'viewColor'])
},
onLoad() {},
onLoad(options) {
let _this = this;
if(options.scene){
console.log('转换前参数:',options.scene)
let scene = _this.$util.getUrlParams(decodeURIComponent(options.scene));
console.log("接收参数",scene)
}
//
if (!_this.isLogin) {
//
_this.isAuto = true;
_this.isShowAuth = true
}else{
//
_this.init();
}
},
//
onReachBottom() {},
methods: {