fix table导出筛选

This commit is contained in:
Theluyuan 2023-05-04 15:55:20 +08:00
parent a5df1c4555
commit 77cce500e5
4 changed files with 4 additions and 4 deletions

View File

@ -1141,7 +1141,7 @@ const _sfc_main = defineComponent({
}
tableStr += "</tr>";
}
tableDataSource.value.forEach((item, rowIndex) => {
datalist.value.forEach((item, rowIndex) => {
tableStr += "<tr>";
tableBodyColumns.value.forEach((tableColumn, columnIndex) => {
Object.keys(item).forEach((name) => {

View File

@ -19565,7 +19565,7 @@ const _sfc_main$D = defineComponent({
}
tableStr += "</tr>";
}
tableDataSource.value.forEach((item, rowIndex) => {
datalist.value.forEach((item, rowIndex) => {
tableStr += "<tr>";
tableBodyColumns.value.forEach((tableColumn, columnIndex) => {
Object.keys(item).forEach((name) => {

View File

@ -387,7 +387,7 @@ const exportData = () => {
}
tableStr += "</tr>";
}
tableDataSource.value.forEach((item, rowIndex) => {
datalist.value.forEach((item, rowIndex) => {
tableStr += "<tr>";
tableBodyColumns.value.forEach((tableColumn, columnIndex) => {
Object.keys(item).forEach((name) => {

File diff suppressed because one or more lines are too long