|
@@ -24,6 +24,11 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</template>
|
|
|
+ <template v-if="istableDown">
|
|
|
+ <div :style="downStyle" class="down-btns">
|
|
|
+ <img class="btn-square btn-shadow" src="@/assets/baggage/ic_export.png" title="下载" @click="exportHandler" />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
<template v-if="istableCol">
|
|
|
<div :style="btnStyle" class="btns">
|
|
|
<img class="btn-square btn-shadow" src="@/assets/baggage/ic_setting.png" title="列设置" @click="show" />
|
|
@@ -79,6 +84,14 @@ export default {
|
|
|
type: Boolean,
|
|
|
default: false,
|
|
|
},
|
|
|
+ istableDown: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false,
|
|
|
+ },
|
|
|
+ downName: {
|
|
|
+ type: String,
|
|
|
+ default: '',
|
|
|
+ },
|
|
|
istableChild: {
|
|
|
type: Boolean,
|
|
|
default: false,
|
|
@@ -87,6 +100,10 @@ export default {
|
|
|
type: Object,
|
|
|
default: () => { },
|
|
|
},
|
|
|
+ downStyle: {
|
|
|
+ type: Object,
|
|
|
+ default: () => { },
|
|
|
+ },
|
|
|
pageSize: {
|
|
|
type: Number,
|
|
|
default: 20,
|
|
@@ -314,6 +331,31 @@ export default {
|
|
|
if (this.noMore || this.loading) {
|
|
|
return
|
|
|
}
|
|
|
+ if (this.AqueryParams && this.AqueryParams.queryparams) {
|
|
|
+ const newData = _.cloneDeep(this.tableTag)
|
|
|
+ const paramsType = typeof this.AqueryParams.queryparams
|
|
|
+ if (paramsType == 'string') {
|
|
|
+ const dataObj = {}
|
|
|
+ const paramsData = this.AqueryParams.queryparams.split(',')
|
|
|
+ if (paramsData && paramsData.length) {
|
|
|
+ for (const key in newData) {
|
|
|
+ paramsData.map(item => {
|
|
|
+ if (key === item) {
|
|
|
+ dataObj[item] = newData[key]
|
|
|
+ } else {
|
|
|
+ if (item.includes('=')) {
|
|
|
+ const newItem = item.split('=')
|
|
|
+ if (key === newItem[0]) {
|
|
|
+ dataObj[newItem[1]] = newData[key]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ this.dataContent = dataObj
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
this.getQuery(
|
|
|
this.AqueryId,
|
|
|
this.dataContent,
|
|
@@ -519,9 +561,8 @@ export default {
|
|
|
// 导出
|
|
|
exportHandler () {
|
|
|
const table = this.$refs['table'].$el.cloneNode(true)
|
|
|
- // const { luggageNum, flightNo, flightDate } = this.query
|
|
|
- const fileName = `高级查询.xlsx`
|
|
|
- throttledExportToExcel(table, '高级查询', fileName)
|
|
|
+ const fileName = `${this.downName || this.AqueryParams.auth_name}.xlsx`
|
|
|
+ throttledExportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
|
|
|
},
|
|
|
formatter (row, column, cellValue, index) {
|
|
|
const sameColumn = this.tableCols.find(
|
|
@@ -567,5 +608,11 @@ export default {
|
|
|
right: 32px;
|
|
|
z-index: 10;
|
|
|
}
|
|
|
+ .down-btns {
|
|
|
+ position: absolute;
|
|
|
+ top: -50px;
|
|
|
+ right: 72px;
|
|
|
+ z-index: 10;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|