diff --git a/src/components/DesignForm/tableListPage/index.vue b/src/components/DesignForm/tableListPage/index.vue index 131156d..0f10121 100644 --- a/src/components/DesignForm/tableListPage/index.vue +++ b/src/components/DesignForm/tableListPage/index.vue @@ -308,12 +308,12 @@ function closeQrDownload(){ } -const asfs: any[] = []; -const radios: any[] = []; -const checkboxs: any[] = []; -const switchs: any[] = []; -const selects: any[] = []; -const tables: any[] = []; +let asfs: any[] = []; +let radios: any[] = []; +let checkboxs: any[] = []; +let switchs: any[] = []; +let selects: any[] = []; +let tables: any[] = []; function getAsfs() { //setTimeout(() => { let dataList = ref({}); @@ -864,6 +864,12 @@ const getPageData = () => { }) .finally(() => { state.loading = false; + asfs = []; + radios = []; + checkboxs = []; + switchs = []; + selects = []; + tables = []; getAsfs() }); }