|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2022-01-17 10:39:22
|
|
|
- * @LastEditTime: 2022-05-05 11:47:24
|
|
|
+ * @LastEditTime: 2022-05-05 11:56:57
|
|
|
* @LastEditors: your name
|
|
|
* @Description: 行李视图
|
|
|
-->
|
|
@@ -192,6 +192,7 @@
|
|
|
<script>
|
|
|
import Dialog from '@/layout/components/Dialog/index.vue'
|
|
|
import { queryMap, myQuery } from '@/api/dataIntegration'
|
|
|
+import { BaggageMessageQuery } from '@/api/flight'
|
|
|
import tableColsMixin from '../mixins/tableCols'
|
|
|
|
|
|
export default {
|
|
@@ -218,7 +219,6 @@ export default {
|
|
|
dialogVisibledele: false,
|
|
|
active: 2,
|
|
|
infoBtn: '跟踪信息',
|
|
|
- hasMessageGotten: false,
|
|
|
messageList: [
|
|
|
// `BSM
|
|
|
// .V/1LHRB
|
|
@@ -413,6 +413,15 @@ export default {
|
|
|
} catch (error) {
|
|
|
console.log('错误', error)
|
|
|
}
|
|
|
+ },
|
|
|
+ async baggageMessageQuery(params) {
|
|
|
+ try {
|
|
|
+ const result = await BaggageMessageQuery(params)
|
|
|
+ // console.log(result.returnData)
|
|
|
+ this.messageList = result.returnData
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|