|
@@ -6,7 +6,7 @@
|
|
|
:data="listState.list"
|
|
|
style="width: 960px; margin: 0 auto"
|
|
|
>
|
|
|
- <el-table-column label="报告发起时间" width="170">
|
|
|
+ <el-table-column label="报告发起时间" align="center" width="170">
|
|
|
<template slot-scope="scope">
|
|
|
<span class="max-line-3">{{
|
|
|
(scope.row.createTime * 1000) | formatTime('yyyy-MM-dd HH:mm')
|
|
@@ -96,12 +96,12 @@
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="状态">
|
|
|
+ <el-table-column label="状态" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-html="formatState(scope.row.state)"></span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="备注" min-width="300">
|
|
|
+ <el-table-column label="备注" align="center" min-width="300">
|
|
|
<template slot-scope="scope">
|
|
|
<span
|
|
|
v-if="scope.row.state === null || scope.row.state === undefined"
|
|
@@ -133,7 +133,7 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column min-width="128" label="操作">
|
|
|
+ <el-table-column min-width="128" align="center" label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- 下载完成,且当前分析下查询的项目总数>0展示-->
|
|
|
<span
|
|
@@ -586,13 +586,11 @@ export default {
|
|
|
font-weight: 400;
|
|
|
color: #1d1d1d;
|
|
|
line-height: 22px;
|
|
|
- text-align: center;
|
|
|
border-bottom-color: rgba(255, 255, 255, 0.5);
|
|
|
}
|
|
|
.el-table th.is-leaf {
|
|
|
line-height: 18px;
|
|
|
background: #f7f9fc;
|
|
|
- text-align: center;
|
|
|
border-bottom-color: transparent;
|
|
|
}
|
|
|
}
|