baggageAbnormal.vue 768 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="baggageAbnormal">
  3. <Table style="height:100%" tableName="异常行李表" :tableTag="tableTag" ref="table" />
  4. </div>
  5. </template>
  6. <script>
  7. import Table from '../../newQuery/components/table.vue'
  8. export default {
  9. name: 'BaggageAbnormal',
  10. components: { Table },
  11. data () {
  12. return {
  13. loading: false,
  14. tableTag: {}
  15. }
  16. },
  17. mounted () {
  18. const { query } = this.$route
  19. const newQuery = _.cloneDeep(query)
  20. if (newQuery.ID) delete newQuery.ID
  21. this.tableTag = newQuery
  22. },
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .baggageAbnormal {
  27. height: 100%;
  28. }
  29. </style>