|
@@ -115,7 +115,7 @@
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<el-table :data="firstData" :height="isTrue ? 'calc(100% - 312px)' : 'calc(100% - 212px)'"
|
|
<el-table :data="firstData" :height="isTrue ? 'calc(100% - 312px)' : 'calc(100% - 212px)'"
|
|
|
- style="width: 100%; margin-top: 20px;">
|
|
|
|
|
|
|
+ style="width: 100%; margin-top: 20px;" highlight-current-row>
|
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
|
<el-table-column prop="companyALlName" label="保险公司" width="120"></el-table-column>
|
|
<el-table-column prop="companyALlName" label="保险公司" width="120"></el-table-column>
|
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
@@ -267,7 +267,7 @@
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<el-table :data="secondData" :height="isTrue ? 'calc(100% - 312px)' : 'calc(100% - 212px)'"
|
|
<el-table :data="secondData" :height="isTrue ? 'calc(100% - 312px)' : 'calc(100% - 212px)'"
|
|
|
- style="width: 100%; margin-top: 20px;">
|
|
|
|
|
|
|
+ style="width: 100%; margin-top: 20px;" highlight-current-row>
|
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
|
<el-table-column prop="companyALlName" label="保险公司" width="120"></el-table-column>
|
|
<el-table-column prop="companyALlName" label="保险公司" width="120"></el-table-column>
|
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
@@ -421,7 +421,7 @@
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
<el-table :data="thirdData" :height="isTrue ? 'calc(100% - 312px)' : 'calc(100% - 212px)'"
|
|
<el-table :data="thirdData" :height="isTrue ? 'calc(100% - 312px)' : 'calc(100% - 212px)'"
|
|
|
- style="width: 100%; margin-top: 20px;">
|
|
|
|
|
|
|
+ style="width: 100%; margin-top: 20px;" highlight-current-row>
|
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
|
<el-table-column prop="companyALlName" label="保险公司" width="120"></el-table-column>
|
|
<el-table-column prop="companyALlName" label="保险公司" width="120"></el-table-column>
|
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
@@ -553,7 +553,7 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
- <el-table :data="forthData" height="calc(100% - 262px )" style="width: 100%; margin-top: 20px;">
|
|
|
|
|
|
|
+ <el-table :data="forthData" height="calc(100% - 262px )" style="width: 100%; margin-top: 20px;" highlight-current-row>
|
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
<el-table-column prop="orderNo" label="订单号" width="120"></el-table-column>
|
|
|
<el-table-column prop="companyName" label="保险公司" width="120"></el-table-column>
|
|
<el-table-column prop="companyName" label="保险公司" width="120"></el-table-column>
|
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
<el-table-column prop="licenseNo" label="车牌号" width="120"></el-table-column>
|
|
@@ -946,4 +946,12 @@ onMounted(() => {
|
|
|
:deep(.el-badge__content--danger) {
|
|
:deep(.el-badge__content--danger) {
|
|
|
background-color: #D40000;
|
|
background-color: #D40000;
|
|
|
}
|
|
}
|
|
|
|
|
+/* 自定义表格点击高亮颜色 */
|
|
|
|
|
+: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>
|