|
@@ -177,7 +177,7 @@
|
|
|
for(let i=0;i<4;i++){
|
|
|
var newnode = document.createElement("tr");
|
|
|
if(i==0){
|
|
|
- newnode.innerHTML = "<td class='cell' style='font-size: 12px!important;background: #E5EEF6!important;'>合计</td>" +
|
|
|
+ newnode.innerHTML = "<td class='cell' style='font-size: 12px!important;background: #E5EEF6!important;font-weight: 500!important;'>合计</td>" +
|
|
|
"<td class='cell cellbg'>监控系统</td>" + `<td class='cell'>${this.totalCount.monitorTotalCount||''}</td>`;
|
|
|
}
|
|
|
if(i==1){
|
|
@@ -205,8 +205,8 @@
|
|
|
var lastLine = document.getElementsByClassName("el-table__footer")[0]
|
|
|
.children[1];
|
|
|
lastLine.innerHTML = '';
|
|
|
- var newnode = document.createElement("tr");
|
|
|
- newnode.innerHTML = "<td class='cell' colSpan='3' style='font-size: 12px!important;background: #E5EEF6!important;'>合计</td>" +
|
|
|
+ let newnode = document.createElement("tr");
|
|
|
+ newnode.innerHTML = "<td class='cell' colSpan='3' style='font-size: 12px!important;background: #E5EEF6!important;font-weight: 500!important;'>合计</td>" +
|
|
|
`<td class='cell cellbg'>${this.totalCount.smokeTotalCount||''}</td>`
|
|
|
+ `<td class='cell'>${this.totalCount.warmTotalCount||''}</td>`
|
|
|
+ `<td class='cell'>${this.totalCount.handNewTotalCount||''}</td>`
|