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[] = [];
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()
});
}

Loading…
Cancel
Save