|
@@ -13,7 +13,7 @@ import { exportToExcel } from '@/utils/table'
|
|
|
export default {
|
|
|
name: 'BaggageList',
|
|
|
components: { Table },
|
|
|
- props: ['tableDatas'],
|
|
|
+ props: ['tableDatas', 'queryItem'],
|
|
|
data () {
|
|
|
return {
|
|
|
tableCols: [],
|
|
@@ -25,13 +25,34 @@ export default {
|
|
|
tableTag: []
|
|
|
}
|
|
|
},
|
|
|
- mounted () {
|
|
|
- if (this.tableDatas?.length) {
|
|
|
- this.tableDatas[0].nfilter = JSON.parse(sessionStorage.getItem('bagQueryParams')) || {}
|
|
|
- this.tableTag = this.tableDatas
|
|
|
+ watch: {
|
|
|
+ queryItem: {
|
|
|
+ handler (val) {
|
|
|
+ if (val) {
|
|
|
+ this.getViewData(true)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ deep: true
|
|
|
}
|
|
|
},
|
|
|
+ mounted () {
|
|
|
+ this.getViewData()
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ getViewData (Jump = false) {
|
|
|
+ if (this.tableDatas?.length) {
|
|
|
+ if (Jump) {
|
|
|
+ const ndata = _.cloneDeep(this.tableDatas)
|
|
|
+ if (ndata?.length) {
|
|
|
+ ndata[0].nfilter = JSON.parse(sessionStorage.getItem('bagQueryParams')) || {}
|
|
|
+ this.tableTag = ndata
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.tableDatas[0].nfilter = JSON.parse(sessionStorage.getItem('bagQueryParams')) || {}
|
|
|
+ this.tableTag = this.tableDatas
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
exportHandler (refName, tableName) {
|
|
|
const { query } = this.$route
|
|
|
const table = this.$refs[refName].$el.cloneNode(true)
|