|
@@ -18,12 +18,13 @@ export default {
|
|
|
return {
|
|
|
dataDetail: {},
|
|
|
isBindMobile: false,
|
|
|
+ codeId: 0,
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
async getDetail() {
|
|
|
const res = await Mine.activity_signin_detail({
|
|
|
- ActivityId: 2161,
|
|
|
+ ActivityId: this.codeId,
|
|
|
});
|
|
|
if (res.Ret === 200) {
|
|
|
console.log(res);
|
|
@@ -33,7 +34,8 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
onLoad(options) {
|
|
|
- this.getDetail();
|
|
|
+ this.codeId = Number(options.scene) || 0;
|
|
|
+ this.codeId && this.getDetail();
|
|
|
},
|
|
|
};
|
|
|
</script>
|