Browse Source

二维码切换表单bug

lwx_16
liwenxuan 10 months ago
parent
commit
8be677d6ac
  1. 18
      src/components/DesignForm/tableListPage/index.vue

18
src/components/DesignForm/tableListPage/index.vue

@ -308,12 +308,12 @@ function closeQrDownload(){
} }
const asfs: any[] = []; let asfs: any[] = [];
const radios: any[] = []; let radios: any[] = [];
const checkboxs: any[] = []; let checkboxs: any[] = [];
const switchs: any[] = []; let switchs: any[] = [];
const selects: any[] = []; let selects: any[] = [];
const tables: any[] = []; let tables: any[] = [];
function getAsfs() { function getAsfs() {
//setTimeout(() => { //setTimeout(() => {
let dataList = ref({}); let dataList = ref({});
@ -864,6 +864,12 @@ const getPageData = () => {
}) })
.finally(() => { .finally(() => {
state.loading = false; state.loading = false;
asfs = [];
radios = [];
checkboxs = [];
switchs = [];
selects = [];
tables = [];
getAsfs() getAsfs()
}); });
} }

Loading…
Cancel
Save