addDataTable.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <template>
  2. <div>
  3. <el-table v-if="systemName=='弱电系统'" :class="!examplesBoo?'heightCell':''"
  4. :data="tableData"
  5. border
  6. :show-summary="!examplesBoo" max-height="450"
  7. style="width: 100%" :header-cell-style="()=>{
  8. return {
  9. background:'#E5EEF6'
  10. }
  11. }" :span-method="objectSpanMethod" :tooltip-effect="'dark'">
  12. <el-table-column
  13. prop="fireZone"
  14. label="分区" show-overflow-tooltip>
  15. </el-table-column>
  16. <el-table-column
  17. prop="system"
  18. label="系统">
  19. </el-table-column>
  20. <el-table-column
  21. prop="monitorCount"
  22. label="数量">
  23. <template slot-scope="scope">
  24. <span type="text" v-if="scope.row.system=='监控系统'">{{scope.row.monitorCount}}</span>
  25. <span type="text" v-if="scope.row.system=='BA系统'">{{scope.row.baCount}}</span>
  26. <span type="text" v-if="scope.row.system=='DDC'">{{scope.row.ddcCount}}</span>
  27. <span type="text" v-if="scope.row.system=='门禁系统'">{{scope.row.accessCount}}</span>
  28. </template>
  29. </el-table-column>
  30. </el-table>
  31. <el-table v-if="systemName=='消防系统'" id="tables"
  32. :data="tableData"
  33. border max-height="450"
  34. :show-summary="!examplesBoo"
  35. style="width: 100%;" :header-cell-style="()=>{return { background:'#E5EEF6' } }" :cell-style="({row, column, rowIndex, columnIndex})=>{
  36. return { background:examplesBoo&&rowIndex==3&&columnIndex==1?'#EFF0F1':'#fff' }
  37. }" :span-method="objectSpanMethod" :tooltip-effect="'dark'">
  38. <el-table-column
  39. prop="fireZone"
  40. label="防火分区" show-overflow-tooltip
  41. >
  42. </el-table-column>
  43. <el-table-column
  44. prop="hostNum"
  45. label="主机编号" show-overflow-tooltip>
  46. <template slot-scope="scope">
  47. <div v-if="scope.row.isFm==0">{{scope.row.manageScope}}</div>
  48. <span v-if="scope.row.isFm==1">{{scope.row.hostNum}}</span>
  49. </template>
  50. </el-table-column>
  51. <el-table-column
  52. prop="loopNum"
  53. label="回路编号" show-overflow-tooltip>
  54. </el-table-column>
  55. <el-table-column
  56. prop="smokeCount"
  57. label="烟感数量">
  58. </el-table-column>
  59. <el-table-column
  60. prop="warmCount"
  61. label="温感数量">
  62. </el-table-column>
  63. <el-table-column
  64. prop="handNewCount"
  65. label="手报数量">
  66. </el-table-column>
  67. <el-table-column
  68. prop="fireHydrantCount"
  69. label="消火栓数量" width="85">
  70. </el-table-column>
  71. <el-table-column
  72. prop="moduleCount"
  73. label="模块数量">
  74. </el-table-column>
  75. </el-table>
  76. </div>
  77. </template>
  78. <script>
  79. export default {
  80. name: "addDataTable",
  81. props:{
  82. systemName:String,
  83. examplesBoo:Boolean,
  84. tableData:{
  85. type: Array,
  86. default: ()=>{
  87. return [ {
  88. fireZone: '',
  89. system: '监控系统',
  90. monitorCount: '',
  91. },
  92. {
  93. fireZone: '',
  94. system: 'BA系统',
  95. baCount: '',
  96. },
  97. {
  98. fireZone: '',
  99. system: 'DDC',
  100. ddcCount: '',
  101. },
  102. {
  103. fireZone: '',
  104. system: '门禁系统',
  105. accessCount: '',
  106. },]
  107. }
  108. },
  109. tableData2:{
  110. type:Array,
  111. default:()=>{
  112. return [
  113. {
  114. fireZone: '',
  115. isFm: '1',
  116. hostNum: '',
  117. loopNum: '',
  118. smokeCount: '',
  119. warmCount: '',
  120. handNewCount: '',
  121. fireHydrantCount: '',
  122. moduleCount: '',
  123. }
  124. ]
  125. }
  126. },
  127. totalCount:{
  128. type:Object,
  129. default:()=>{
  130. return {
  131. "monitorTotalCount":"", //监控系统总数量
  132. "baTotalCount":"", //BA系统总数量
  133. "ddcTotalCount":"", //DDC总数量
  134. "accessTotalCount":"" //门禁系统总数量
  135. }
  136. }
  137. }
  138. },
  139. data(){
  140. return {
  141. }
  142. },
  143. methods:{
  144. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  145. if(this.systemName=='弱电系统'){
  146. if (columnIndex === 0) {
  147. if (rowIndex % 4 === 0) {
  148. return {
  149. rowspan: 4,
  150. colspan: 1
  151. };
  152. } else {
  153. return {
  154. rowspan: 0,
  155. colspan: 0
  156. };
  157. }
  158. }
  159. }
  160. if(this.systemName=='消防系统'){
  161. if (row.isFm == 0) {
  162. if (columnIndex === 1) {
  163. return {
  164. rowspan: 1,
  165. colspan: 7
  166. };
  167. }
  168. }
  169. }
  170. this.$nextTick(() => {
  171. if(this.systemName=='弱电系统'){
  172. let lastLine = document.getElementsByClassName("el-table__footer")[0]
  173. .children[1];
  174. lastLine.innerHTML = ''
  175. for(let i=0;i<4;i++){
  176. var newnode = document.createElement("tr");
  177. if(i==0){
  178. newnode.innerHTML = "<td class='cell' style='font-size: 12px!important;background: #E5EEF6!important;font-weight: 500!important;'>合计</td>" +
  179. "<td class='cell cellbg'>监控系统</td>" + `<td class='cell'>${this.totalCount.monitorTotalCount||''}</td>`;
  180. }
  181. if(i==1){
  182. newnode.innerHTML =
  183. "<td class='cell cellbg'>BA系统</td>" +
  184. `<td class='cell'>${this.totalCount.baTotalCount||''}</td>`;
  185. }
  186. if(i==2){
  187. newnode.innerHTML =
  188. "<td class='cell cellbg'>DDC</td>" +
  189. `<td class='cell'>${this.totalCount.ddcTotalCount||''}</td>`;
  190. }
  191. if(i==3){
  192. newnode.innerHTML =
  193. "<td class='cell cellbg'>门禁系统</td>" +
  194. `<td class='cell'>${this.totalCount.accessTotalCount||''}</td>`;
  195. }
  196. lastLine.appendChild(newnode);
  197. }
  198. let tds = document.querySelectorAll(".el-table__footer-wrapper tr>td");
  199. tds[0].rowSpan = 4;
  200. }
  201. if(this.systemName=='消防系统'){
  202. var lastLine = document.getElementsByClassName("el-table__footer")[0]
  203. .children[1];
  204. lastLine.innerHTML = '';
  205. let newnode = document.createElement("tr");
  206. newnode.innerHTML = "<td class='cell' colSpan='3' style='font-size: 12px!important;background: #E5EEF6!important;font-weight: 500!important;'>合计</td>" +
  207. `<td class='cell cellbg'>${this.totalCount.smokeTotalCount||''}</td>`
  208. + `<td class='cell'>${this.totalCount.warmTotalCount||''}</td>`
  209. + `<td class='cell'>${this.totalCount.handNewTotalCount||''}</td>`
  210. + `<td class='cell'>${this.totalCount.fireHydrantTotalCount||''}</td>`
  211. + `<td class='cell'>${this.totalCount.moduleTotalCount||''}</td>`;
  212. lastLine.appendChild(newnode);
  213. // let tds = document.querySelectorAll(".el-table__footer-wrapper tr>td");
  214. // tds[0].colSpan = 3;
  215. // tds[1].style.display = "none";
  216. // tds[2].style.display = "none";
  217. }
  218. });
  219. },
  220. }
  221. }
  222. </script>
  223. <style scoped lang="less">
  224. /deep/ .el-table{
  225. .cell{
  226. height: 16px!important;
  227. line-height:16px!important;
  228. color: #000000!important;
  229. text-align: center!important;
  230. }
  231. .el-table__footer-wrapper{
  232. td{
  233. background: #ffffff!important;
  234. }
  235. tr:first-child{
  236. td:first-child{
  237. background: #E5EEF6!important;
  238. }
  239. }
  240. .cellbg{
  241. background: #ffffff!important;
  242. }
  243. }
  244. .el-table__body tr:hover > td {
  245. background-color: unset;
  246. }
  247. }
  248. /deep/ #tables{
  249. .cell{
  250. height: 30px!important;
  251. line-height:30px!important;
  252. color: #000000!important;
  253. text-align: center!important;
  254. }
  255. }
  256. </style>