edbDetailData.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <div class="edb-detail-data-wrap">
  3. <el-table
  4. :data="tableData"
  5. class="firstColumTable" border>
  6. <el-table-column
  7. v-for="item in tableColumsOne"
  8. :key="item.label"
  9. :width="item.widthsty"
  10. :min-width="item.minwidthsty"
  11. align="center">
  12. <template slot="header" slot-scope="scope">
  13. <div class="chartEn-mark" style="top: -10px;" v-show="scope.$index ==0 && tableData[0] && tableData[0].IsEnEdb" >En</div>
  14. <span>{{item.label}}</span>
  15. </template>
  16. <template slot-scope="scope">
  17. <span v-show="currentLang=='ch'">{{ scope.row[item.key] }}</span>
  18. <span v-show="currentLang=='en'">{{scope.row[item.enKey||item.key] || scope.row[item.key]}}</span>
  19. </template>
  20. </el-table-column>
  21. </el-table>
  22. <el-table
  23. :data="tableData"
  24. style="box-shadow: 0px 3px 6px rgba(155, 170, 219, 0.2);"
  25. border>
  26. <el-table-column
  27. v-for="item in tableColumsTwo"
  28. :key="item.label"
  29. :label="item.label"
  30. :width="item.widthsty"
  31. :min-width="item.minwidthsty"
  32. align="center"
  33. >
  34. <template #header>
  35. <span>{{ item.label }}</span>
  36. </template>
  37. <template slot-scope="scope">
  38. <span>{{ scope.row[item.key] }}</span>
  39. </template>
  40. </el-table-column>
  41. <div slot="empty" style="padding: 50px 0 320px;">
  42. <tableNoData :text="defaultWarn"/>
  43. </div>
  44. </el-table>
  45. <ul
  46. class="value-ul"
  47. ref="valueUl"
  48. @scroll="scrollHandle"
  49. v-show="dataList.length">
  50. <li
  51. class="value-item"
  52. v-for="item in dataList"
  53. :key="item.EdbDataId"
  54. >
  55. <span class="value-label">
  56. <span style="position: relative;">
  57. <i class="new-tag" v-if="tableData[0].LatestDate===item.DataTime"></i>
  58. {{item.DataTime}}
  59. </span>
  60. </span>
  61. <span :class="['value-label',{'predict-act': tableData[0].DataInsertConfig.Date===item.DataTime}]" style="min-width:200px;text-align:center;">
  62. <span :class="['value-style',{'predict-act': tableData[0].DataInsertConfig.Date===item.DataTime}]">{{item.Value}}</span>
  63. </span>
  64. </li>
  65. <li class="nodata value-item" v-if="!dataList.length">{{$t('Table.prompt_slogan')}}</li>
  66. </ul>
  67. </div>
  68. </template>
  69. <script>
  70. export default {
  71. props:{
  72. currentLang:{
  73. type:String,
  74. default:'ch'
  75. },
  76. tableData:{
  77. type:Array,
  78. default:()=>{return []}
  79. },
  80. tableColumsOne:{
  81. type:Array,
  82. default:()=>{return []}
  83. },
  84. tableColumsTwo:{
  85. type:Array,
  86. default:()=>{return []}
  87. },
  88. defaultWarn:{
  89. type:String,
  90. default:'暂无数据'
  91. },
  92. dataList:{
  93. type:Array,
  94. default:()=>{return []}
  95. },
  96. haveMore:{
  97. type:Boolean,
  98. default:false
  99. }
  100. },
  101. data() {
  102. return {
  103. };
  104. },
  105. methods: {
  106. /* 数值滚动加载 */
  107. scrollHandle: _.throttle(function() {
  108. let scrollTop = this.$refs.valueUl.scrollTop;
  109. let clientHeight = this.$refs.valueUl.clientHeight;
  110. let scrollHeight = this.$refs.valueUl.scrollHeight;
  111. if(scrollTop===0) return
  112. if(scrollTop + clientHeight >= scrollHeight-10 && this.haveMore){
  113. this.$emit('getNextData')
  114. }
  115. },200),
  116. },
  117. };
  118. </script>
  119. <style lang="scss">
  120. .edb-detail-data-wrap{
  121. .el-table--enable-row-transition .el-table__body td{
  122. background: #fff !important;
  123. }
  124. .el-table td, .el-table th.is-leaf {
  125. background: #F2F6FA !important;
  126. }
  127. }
  128. </style>
  129. <style scoped lang="scss">
  130. .edb-detail-data-wrap{
  131. display: flex;
  132. flex-direction: column;
  133. height: 100%;
  134. .firstColumTable{
  135. box-shadow: 0px 3px 6px rgba(155, 170, 219, 0.2);
  136. }
  137. .el-table{
  138. flex: none;
  139. }
  140. .value-ul{
  141. /* flex: 1;
  142. overflow-y: auto; */
  143. overflow-y: auto;
  144. }
  145. }
  146. </style>