12345678910111213141516171819202122232425262728293031 |
- <template>
- <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="baggageAbnormal">
- <Table style="height:100%" tableName="异常行李表" :tableTag="tableTag" ref="table" />
- </div>
- </template>
- <script>
- import Table from '../../newQuery/components/table.vue'
- export default {
- name: 'BaggageAbnormal',
- components: { Table },
- data () {
- return {
- loading: false,
- tableTag: {}
- }
- },
- mounted () {
- const { query } = this.$route
- const newQuery = _.cloneDeep(query)
- if (newQuery.ID) delete newQuery.ID
- this.tableTag = newQuery
- },
- }
- </script>
- <style lang="scss" scoped>
- .baggageAbnormal {
- height: 100%;
- }
- </style>
|