Authored by TaoHuang

fix error

... ... @@ -20,7 +20,9 @@ export default {
methods: {
async show(params) {
this.$refs.actionSheet.show();
await this.$refs.detail.fetch(params);
setTimeout(() => {
this.$refs.detail.fetch(params);
}, 100);
},
hide() {
this.$refs.actionSheet.hide();
... ...