【优化】优化首页【record购买记录】组件执行方式,将mounted调整为created。

This commit is contained in:
大灰灰
2023-01-01 20:28:59 +08:00
parent cb22659926
commit 88c65e9812

View File

@@ -93,8 +93,8 @@
});
}
},
mounted() {
this.getRecod();
created() {
this.getRecord();
}
}
</script>