zhaoke 1 year ago
parent
commit
eaa89aae84
2 changed files with 52 additions and 11 deletions
  1. 2 8
      src/views/newContainer/index.vue
  2. 50 3
      src/views/newQuery/components/table.vue

+ 2 - 8
src/views/newContainer/index.vue

@@ -18,10 +18,9 @@
     <div class="newContainer-bootom">
       <div class="newContainer-bootom-title flex">
         <div class="manageTitle">容器行李列表</div>
-        <div>2</div>
       </div>
       <div class="newContainer-bootom-table">
-        <Table :tableTag="tabObj" />
+        <Table :istableCol="true" :istableDown="true" :tableTag="tabObj" />
       </div>
     </div>
   </div>
@@ -51,12 +50,7 @@ export default {
     this.query = query
   },
   mounted () {
-    const { container_ID, carrierFlights, carrierFlightsDate } = this.query
-    this.tabObj = {
-      container_ID,
-      carrierFlights,
-      carrierFlightsDate
-    }
+    this.tabObj = this.query
     this.getColumnData()
   },
   methods: {

+ 50 - 3
src/views/newQuery/components/table.vue

@@ -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>