| | |
| | | let cellarea = ref(` |
| | | <div class="vxe-table--cell-area" style="font-size: 10px;text-align: left" > |
| | | <span class="vxe-table--cell-main-area" > |
| | | <p style="bottom: 0;color: blue;background-color: #5cadfe; margin-top: auto;"></p> |
| | | <p style="bottom: 0;color: blue;background-color: #5cadfe; margin-top: auto;font-size: 14px"></p> |
| | | </span> |
| | | <span class="vxe-table--cell-active-area" ></span> |
| | | </div> |
| | |
| | | |
| | | result.forEach((item,index) => { |
| | | if(index>0){ |
| | | sum = Number(add(sum, (item[0] || 0))) |
| | | const val = isNaN(item[0])?0:item[0] |
| | | sum = Number(add(sum, (val || 0))) |
| | | } |
| | | }) |
| | | |