|
|
@@ -72,8 +72,9 @@
|
|
|
default-expand-all
|
|
|
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
|
|
|
show-summary
|
|
|
+ highlight-current-row
|
|
|
:summary-method="val => getSummaries(val, ['totalReceivable', 'totalOverinflatedAmount', 'superviseFee', 'SxfInvoicedAmount', 'sxfSettledAmount', 'SxfUnInvoicedAmount', 'sxfUnSettledAmount', 'settlementPaymentDifference'])"
|
|
|
- >
|
|
|
+ >
|
|
|
<el-table-column prop="companyName" label="保险公司" width="300" />
|
|
|
<el-table-column prop="totalReceivable" label="应收金额" align="right" />
|
|
|
<el-table-column prop="totalOverinflatedAmount" label="虚增金额合计" align="right" />
|
|
|
@@ -889,4 +890,12 @@ onMounted(() => {
|
|
|
color: var(--el-color-primary);
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+/* 自定义表格点击高亮颜色 */
|
|
|
+:deep(.el-table__body tr.current-row > td) {
|
|
|
+ background-color: #c1e8fa !important;
|
|
|
+}
|
|
|
+
|
|
|
+:deep(.el-table__body tr.current-row:hover > td) {
|
|
|
+ background-color: #b4ddf8 !important;
|
|
|
+}
|
|
|
</style>
|