|
|
@@ -72,6 +72,7 @@
|
|
|
:stripe="false"
|
|
|
:span-method="handleSpanMethod"
|
|
|
:row-style="rowStyle"
|
|
|
+ :row-class-name="'no-stripe-row'"
|
|
|
@pagination-change="handlePaginationChange"
|
|
|
>
|
|
|
<template #index="{ row, index }">
|
|
|
@@ -331,12 +332,6 @@
|
|
|
// 重新加载数据
|
|
|
this.handleQuery()
|
|
|
},
|
|
|
- // 处理下载监审任务
|
|
|
- handleDownloadTask(row) {
|
|
|
- console.log('下载监审任务:', row)
|
|
|
- // 这里实现下载逻辑
|
|
|
- this.$message.success('监审任务功能待实现')
|
|
|
- },
|
|
|
// 处理下载监审卷宗
|
|
|
handleDownloadFile(row) {
|
|
|
console.log('下载监审卷宗:', row)
|
|
|
@@ -450,4 +445,12 @@
|
|
|
.show-row {
|
|
|
display: block;
|
|
|
}
|
|
|
+ // 覆盖斑马纹效果
|
|
|
+ ::v-deep .no-stripe-row {
|
|
|
+ background-color: #ffffff !important;
|
|
|
+ }
|
|
|
+ // 确保所有行都没有斑马纹
|
|
|
+ ::v-deep .el-table__body tr {
|
|
|
+ background-color: #ffffff !important;
|
|
|
+ }
|
|
|
</style>
|