edbDetailSection.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <div class="edb-detail">
  3. <label>{{$t('OnlineExcelPage.selected_indicators_label')}}</label>
  4. <el-table
  5. :data="tableData"
  6. style="box-shadow: 0px 3px 6px rgba(155, 170, 219, 0.2); margin-top: 10px"
  7. border
  8. >
  9. <el-table-column
  10. v-for="item in tableColums"
  11. :key="item.label"
  12. :label="item.label"
  13. :width="item.widthsty"
  14. :min-width="item.minwidthsty"
  15. align="center"
  16. >
  17. <template slot-scope="scope">
  18. <span>{{ scope.row[item.key] }}</span>
  19. </template>
  20. </el-table-column>
  21. <div slot="empty">
  22. <tableNoData :text="$t('OnlineExcelPage.no_indicators_available_table')" size="mini" />
  23. </div>
  24. </el-table>
  25. <ul
  26. class="data-ul"
  27. ref="dataUl"
  28. v-if="tableData[0]&&tableData[0].DataList.length&&tableData[0].HaveOperaAuth"
  29. >
  30. <li
  31. class="value-item"
  32. v-for="(item, index) in tableData[0].DataList"
  33. :key="item.EdbDataId"
  34. >
  35. <span class="value-label">
  36. <i class="new-tag" v-if="index === 0"></i>
  37. {{ item.DataTime }}
  38. </span>
  39. <span
  40. class="value-label"
  41. style="min-width: 200px; text-align: center"
  42. >{{ item.Value }}</span
  43. >
  44. </li>
  45. </ul>
  46. </div>
  47. </template>
  48. <script>
  49. export default {
  50. props: {
  51. tableData: {
  52. type: Array
  53. }
  54. },
  55. data() {
  56. return {
  57. dataList: []
  58. };
  59. },
  60. computed:{
  61. tableColums(){
  62. return [
  63. {
  64. label: this.$t('Edb.Detail.e_id') || '指标ID',
  65. key: 'EdbCode',
  66. },
  67. {
  68. label: this.$t('Edb.Detail.e_name') || '指标名称',
  69. key: this.currentLang==='en'?'EdbNameEn':'EdbName',
  70. },
  71. {
  72. label: this.$t('Edb.Detail.e_fre') || '频度',
  73. key: 'Frequency',
  74. },
  75. {
  76. label: this.$t('Edb.Detail.e_unit') || '单位',
  77. key: this.currentLang==='en'?'UnitEn':'Unit',
  78. },
  79. {
  80. label: this.$t('Edb.Detail.e_start_time') || '起始时间',
  81. key: 'StartDate',
  82. minwidthsty: '100px'
  83. },
  84. {
  85. label: this.$t('Edb.Detail.e_update_time') || '更新时间',
  86. key: 'ModifyTime',
  87. minwidthsty: '110px'
  88. },
  89. {
  90. label: this.$t('Table.source') || '来源',
  91. key: 'SourceName',
  92. },
  93. ]
  94. },
  95. currentLang() {
  96. return this.$store.state.lang
  97. }
  98. },
  99. methods: {},
  100. };
  101. </script>
  102. <style scoped lang="scss">
  103. .edb-detail {
  104. .data-ul {
  105. margin-top: 5px;
  106. border-bottom: 1px solid #dcdfe6;
  107. max-height: 140px;
  108. overflow-y: auto;
  109. .value-item {
  110. /* width: 100%; */
  111. padding: 14px 0;
  112. border: 1px solid #dcdfe6;
  113. border-bottom: none;
  114. display: flex;
  115. justify-content: space-around;
  116. .value-label {
  117. position: relative;
  118. color: #666;
  119. }
  120. .new-tag {
  121. width: 6px;
  122. height: 6px;
  123. display: inline-block;
  124. position: absolute;
  125. left: -12px;
  126. top: 50%;
  127. transform: translateY(-50%);
  128. border-radius: 50%;
  129. background: #f00;
  130. }
  131. }
  132. }
  133. }
  134. </style>