|
@@ -72,8 +72,9 @@
|
|
|
default-expand-all
|
|
default-expand-all
|
|
|
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
|
|
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
|
|
|
show-summary
|
|
show-summary
|
|
|
|
|
+ highlight-current-row
|
|
|
:summary-method="val => getSummaries(val, ['totalReceivable', 'totalOverinflatedAmount', 'superviseFee', 'SxfInvoicedAmount', 'sxfSettledAmount', 'SxfUnInvoicedAmount', 'sxfUnSettledAmount', 'settlementPaymentDifference'])"
|
|
: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="companyName" label="保险公司" width="300" />
|
|
|
<el-table-column prop="totalReceivable" label="应收金额" align="right" />
|
|
<el-table-column prop="totalReceivable" label="应收金额" align="right" />
|
|
|
<el-table-column prop="totalOverinflatedAmount" label="虚增金额合计" align="right" />
|
|
<el-table-column prop="totalOverinflatedAmount" label="虚增金额合计" align="right" />
|
|
@@ -336,7 +337,6 @@
|
|
|
<el-table-column prop="jyPremium" label="非车险保费" width="100"></el-table-column>
|
|
<el-table-column prop="jyPremium" label="非车险保费" width="100"></el-table-column>
|
|
|
<el-table-column prop="jySuperviseCostsProportion" label="非车险手续费比例" width="100"></el-table-column>
|
|
<el-table-column prop="jySuperviseCostsProportion" label="非车险手续费比例" width="100"></el-table-column>
|
|
|
<el-table-column prop="jyPolicyNo" label="非车险保单号" width="200"></el-table-column>
|
|
<el-table-column prop="jyPolicyNo" label="非车险保单号" width="200"></el-table-column>
|
|
|
- <el-table-column prop="syPolicyNo" label="商业险保单号" width="200"></el-table-column>
|
|
|
|
|
<el-table-column prop="invoicePerson" label="开票人" width="100"></el-table-column>
|
|
<el-table-column prop="invoicePerson" label="开票人" width="100"></el-table-column>
|
|
|
<el-table-column prop="invoiceTime" label="开票时间" width="150"></el-table-column>
|
|
<el-table-column prop="invoiceTime" label="开票时间" width="150"></el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|
|
@@ -890,4 +890,12 @@ onMounted(() => {
|
|
|
color: var(--el-color-primary);
|
|
color: var(--el-color-primary);
|
|
|
cursor: pointer;
|
|
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>
|
|
</style>
|