Browse Source

扫码签到问题

dev
396316021 5 months ago
parent
commit
8a996bea4c
  1. 6
      pages/Activity/index.vue
  2. 6
      pages/Project/index.vue

6
pages/Activity/index.vue

@ -382,8 +382,10 @@ export default {
let scene = obj.query.scene;
scene = decodeURIComponent(scene)
this.id = option.id || scene || 0;
this.getDetail(option.id);
console.log('scene',scene)
this.id = option.id ?? scene ?? 0;
this.getDetail(this.id);
this.getJoinList();
},
onReady() {

6
pages/Project/index.vue

@ -365,8 +365,10 @@ export default {
let scene = obj.query.scene;
scene = decodeURIComponent(scene)
this.id = option.id || scene || 0;
this.getDetail(option.id);
console.log('scene',scene)
this.id = option.id ?? scene ?? 0;
this.getDetail(this.id);
this.getProjectStep();
},
onReady() {

Loading…
Cancel
Save