|
@@ -4,8 +4,8 @@
|
|
|
<div class="title">
|
|
|
<span class="title-text">{{ title }}</span>
|
|
|
<span class="right">
|
|
|
- <i title="导出" class="icon el-icon-download" @click="exportClickHandler" />
|
|
|
- <i class="icon el-icon-close" @click="dialogHide" />
|
|
|
+ <img class="btn-square btn-shadow" style="position: relative;top:-8px;margin-right: 15px;" src="@/assets/baggage/ic_export.png" title="导出" @click="exportClickHandler" />
|
|
|
+ <i class="icon el-icon-close" style="top: -12px;position: relative;" @click="dialogHide" />
|
|
|
</span>
|
|
|
</div>
|
|
|
<div class="content">
|
|
@@ -332,6 +332,7 @@ export default {
|
|
|
throw new Error(message || '获取数据失败')
|
|
|
}
|
|
|
this.tableData = this._.cloneDeep(listValues)
|
|
|
+ this.tableData = this.tableData.sort((a, b) => Date.parse(a.departureTime) - Date.parse(b.departureTime))
|
|
|
setTableFilters(this.tableData, this.tableDataFilters)
|
|
|
} catch (error) {
|
|
|
this.$message.error(error.message || '失败')
|