index.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <div class="newContainer">
  3. <div class="newContainer-top">
  4. <div class="newContainer-top-title flex">
  5. <div class="manageTitle">容器基本信息</div>
  6. <el-button @click="toHistory" size="small" type="primary">历史记录</el-button>
  7. </div>
  8. <div class="newContainer-top-table">
  9. <el-row class="msgs-ds" :gutter="20">
  10. <el-col :span="3" class="msgs-list" v-for="(item,index) in detailsArr" :key="index">{{ item.columnLabel }}:
  11. <el-tooltip class="item" effect="dark" :content="item.value" placement="top">
  12. <span>{{ item.value }}</span>
  13. </el-tooltip>
  14. </el-col>
  15. </el-row>
  16. </div>
  17. </div>
  18. <div class="newContainer-bootom">
  19. <div class="newContainer-bootom-title flex">
  20. <div class="manageTitle">容器行李列表</div>
  21. </div>
  22. <div class="newContainer-bootom-table">
  23. <Table :istableCol="true" :istableDown="true" :tableTag="tabObj" />
  24. </div>
  25. </div>
  26. </div>
  27. </template>
  28. <script>
  29. import pf from '@/layout/mixin/publicFunc'
  30. import Table from '@/views/newQuery/components/table.vue'
  31. import ScrollPane from "@/layout/components/TagsView/ScrollPane.vue"
  32. import { getToken } from '@/utils/auth'
  33. export default {
  34. name: 'NewContainer',
  35. mixins: [pf],
  36. components: {
  37. ScrollPane,
  38. Table
  39. },
  40. data () {
  41. return {
  42. detailsArr: [],
  43. query: '',
  44. tabObj: {}
  45. }
  46. },
  47. created () {
  48. const { query } = this.$route
  49. this.query = query
  50. },
  51. mounted () {
  52. this.tabObj = this.query
  53. this.getColumnData()
  54. },
  55. methods: {
  56. // 获取表头数据
  57. async getColumnData () {
  58. try {
  59. const { code, returnData } = await this.getQueryList(
  60. SERVICE_ID.sysUserAuthId,
  61. [
  62. {
  63. user_id: getToken('userid'),
  64. auth_id: this.TauthId,
  65. },
  66. ]
  67. )
  68. if (code == 0) {
  69. if (returnData && returnData.length) {
  70. const msgDatas = returnData.filter(item => item.needShow)
  71. this.getTableInfo(msgDatas)
  72. }
  73. } else {
  74. this.$message.error('获取表头数据失败')
  75. }
  76. } catch (error) {
  77. console.log(error)
  78. }
  79. },
  80. async getTableInfo (arrs) {
  81. const { code, returnData } = await this.getQueryListAuth(this.TqueryId, this.query, 1, 999, this.TauthId)
  82. if (code == 0 && returnData && returnData.length) {
  83. const datas = _.cloneDeep(arrs)
  84. const datasObj = returnData[0]
  85. for (const key in datasObj) {
  86. datas.map(item => {
  87. if (item.columnName == key) {
  88. item.value = datasObj[key]
  89. }
  90. })
  91. }
  92. this.detailsArr = datas
  93. }
  94. },
  95. toHistory () {
  96. const { container_ID } = this.query
  97. if (container_ID) {
  98. this.$router.push({ path: '/newContainerHistory', query: { container_ID } })
  99. }
  100. }
  101. }
  102. }
  103. </script>
  104. <style lang="scss" scoped>
  105. .newContainer {
  106. height: calc(100vh - 80px);
  107. padding: 24px;
  108. &-top {
  109. &-table {
  110. margin-top: 24px;
  111. background: #041741;
  112. line-height: 50px;
  113. color: #fff;
  114. padding-left: 35px;
  115. .msgs-list {
  116. text-align: center;
  117. }
  118. }
  119. }
  120. &-bootom {
  121. margin-top: 24px;
  122. height: calc(100% - 180px);
  123. &-table {
  124. margin-top: 24px;
  125. height: 100%;
  126. }
  127. }
  128. }
  129. </style>