Commit 89b8021a authored by 盖献康's avatar 盖献康

bug(67352) - 检查导出

parent 51a2109e
...@@ -974,6 +974,10 @@ export default { ...@@ -974,6 +974,10 @@ export default {
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {
if (this.ids.length !== 0) { if (this.ids.length !== 0) {
if (this.queryParams.orderByColumn === null) {
this.queryParams.orderByColumn = 'c.create_time'
this.queryParams.isAsc = 'desc'
}
const exportTable = { const exportTable = {
orderByColumn: this.queryParams.orderByColumn, orderByColumn: this.queryParams.orderByColumn,
isAsc: this.queryParams.isAsc, isAsc: this.queryParams.isAsc,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment