|
|
@ -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() |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|