|
@@ -628,9 +628,20 @@ export default {
|
|
throttledExportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
|
|
throttledExportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
|
|
},
|
|
},
|
|
formatter (row, column, cellValue, index) {
|
|
formatter (row, column, cellValue, index) {
|
|
- const sameColumn = this.tableCols.find(
|
|
|
|
- col => col.columnName === column.property
|
|
|
|
- )
|
|
|
|
|
|
+ let sameColumn = null
|
|
|
|
+ this.tableCols.some(col => {
|
|
|
|
+ if (col.columnName === column.property) {
|
|
|
|
+ sameColumn = col
|
|
|
|
+ return true
|
|
|
|
+ } else if (col.children) {
|
|
|
|
+ col.children.some(childCol => {
|
|
|
|
+ if (childCol.columnName === column.property) {
|
|
|
|
+ sameColumn = childCol
|
|
|
|
+ return true
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
|
|
if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
|
|
return (cellValue ?? '').replace('T', ' ')
|
|
return (cellValue ?? '').replace('T', ' ')
|
|
}
|
|
}
|