2026-01-30 11:01:13 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="project-table-container">
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<el-table
|
|
|
|
|
|
:data="dataList"
|
|
|
|
|
|
:loading="loading"
|
|
|
|
|
|
border
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
>
|
|
|
|
|
|
<!-- 项目名称(含描述) -->
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
label="项目名称"
|
|
|
|
|
|
min-width="300"
|
|
|
|
|
|
align="left"
|
2026-01-30 11:01:13 +08:00
|
|
|
|
>
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<div class="project-info-cell">
|
|
|
|
|
|
<div class="project-name">{{ scope.row.projectName }}</div>
|
|
|
|
|
|
<div class="project-desc">{{ scope.row.description || '暂无描述' }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<!-- 项目状态 -->
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="status"
|
|
|
|
|
|
label="项目状态"
|
2026-02-27 09:45:51 +08:00
|
|
|
|
width="160"
|
2026-02-27 09:00:56 +08:00
|
|
|
|
align="center"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-tag :type="getStatusType(scope.row.status)">
|
|
|
|
|
|
<dict-tag :options="dict.type.ccdi_project_status" :value="scope.row.status"/>
|
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<!-- 目标人数 -->
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="targetCount"
|
|
|
|
|
|
label="目标人数"
|
|
|
|
|
|
width="100"
|
|
|
|
|
|
align="center"
|
|
|
|
|
|
/>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<!-- 预警人数(带悬停详情) -->
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
label="预警人数"
|
|
|
|
|
|
width="120"
|
|
|
|
|
|
align="center"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-tooltip placement="top" effect="light">
|
|
|
|
|
|
<div slot="content">
|
|
|
|
|
|
<div style="padding: 8px;">
|
|
|
|
|
|
<div style="margin-bottom: 8px; font-weight: bold; color: #303133;">
|
|
|
|
|
|
风险人数统计
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style="margin-bottom: 6px;">
|
|
|
|
|
|
<span style="color: #f56c6c;">● 高风险:</span>
|
|
|
|
|
|
<span style="font-weight: bold;">{{ scope.row.highRiskCount }} 人</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style="margin-bottom: 6px;">
|
|
|
|
|
|
<span style="color: #e6a23c;">● 中风险:</span>
|
|
|
|
|
|
<span style="font-weight: bold;">{{ scope.row.mediumRiskCount }} 人</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<span style="color: #909399;">● 低风险:</span>
|
|
|
|
|
|
<span style="font-weight: bold;">{{ scope.row.lowRiskCount }} 人</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="warning-count-wrapper">
|
|
|
|
|
|
<span :class="getWarningClass(scope.row)" style="cursor: pointer;">
|
|
|
|
|
|
{{ scope.row.highRiskCount + scope.row.mediumRiskCount + scope.row.lowRiskCount }}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<!-- 创建人 -->
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="createByName"
|
|
|
|
|
|
label="创建人"
|
|
|
|
|
|
width="120"
|
|
|
|
|
|
align="center"
|
|
|
|
|
|
/>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<!-- 创建时间 -->
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
prop="createTime"
|
|
|
|
|
|
label="创建时间"
|
|
|
|
|
|
width="160"
|
|
|
|
|
|
align="center"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<!-- 操作列 -->
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
label="操作"
|
|
|
|
|
|
width="200"
|
|
|
|
|
|
align="center"
|
|
|
|
|
|
fixed="right"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template slot-scope="scope">
|
2026-02-27 09:51:57 +08:00
|
|
|
|
<!-- 进行中状态 (status = '0') -->
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<el-button
|
2026-02-27 09:51:57 +08:00
|
|
|
|
v-if="scope.row.status === '0'"
|
2026-02-27 09:00:56 +08:00
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
2026-02-27 09:51:57 +08:00
|
|
|
|
icon="el-icon-right"
|
|
|
|
|
|
@click="handleEnter(scope.row)"
|
|
|
|
|
|
>进入项目</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 已完成状态 (status = '1') -->
|
|
|
|
|
|
<template v-if="scope.row.status === '1'">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="el-icon-view"
|
|
|
|
|
|
@click="handleViewResult(scope.row)"
|
|
|
|
|
|
>查看结果</el-button>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
|
@click="handleReAnalyze(scope.row)"
|
|
|
|
|
|
>重新分析</el-button>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="el-icon-folder"
|
|
|
|
|
|
@click="handleArchive(scope.row)"
|
|
|
|
|
|
>归档</el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 已归档状态 (status = '2') -->
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<el-button
|
2026-02-27 09:51:57 +08:00
|
|
|
|
v-if="scope.row.status === '2'"
|
2026-02-27 09:00:56 +08:00
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
2026-02-27 09:51:57 +08:00
|
|
|
|
icon="el-icon-view"
|
|
|
|
|
|
@click="handleViewResult(scope.row)"
|
|
|
|
|
|
>查看结果</el-button>
|
2026-02-27 09:00:56 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
<!-- 分页 -->
|
|
|
|
|
|
<el-pagination
|
|
|
|
|
|
v-show="total > 0"
|
|
|
|
|
|
:current-page="pageParams.pageNum"
|
|
|
|
|
|
:page-size="pageParams.pageSize"
|
|
|
|
|
|
:page-sizes="[10, 20, 30, 50]"
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
|
style="margin-top: 16px; text-align: right;"
|
|
|
|
|
|
/>
|
2026-01-30 11:01:13 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'ProjectTable',
|
2026-02-27 09:00:56 +08:00
|
|
|
|
dicts: ['ccdi_project_status', 'ccdi_config_type'],
|
2026-01-30 11:01:13 +08:00
|
|
|
|
props: {
|
|
|
|
|
|
dataList: {
|
|
|
|
|
|
type: Array,
|
|
|
|
|
|
default: () => []
|
|
|
|
|
|
},
|
2026-02-27 09:00:56 +08:00
|
|
|
|
loading: {
|
|
|
|
|
|
type: Boolean,
|
|
|
|
|
|
default: false
|
|
|
|
|
|
},
|
2026-01-30 11:01:13 +08:00
|
|
|
|
total: {
|
|
|
|
|
|
type: Number,
|
|
|
|
|
|
default: 0
|
|
|
|
|
|
},
|
|
|
|
|
|
pageParams: {
|
|
|
|
|
|
type: Object,
|
|
|
|
|
|
default: () => ({
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
getStatusType(status) {
|
|
|
|
|
|
const statusMap = {
|
2026-02-27 09:00:56 +08:00
|
|
|
|
'0': 'primary', // 进行中
|
|
|
|
|
|
'1': 'success', // 已完成
|
|
|
|
|
|
'2': 'info' // 已归档
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
return statusMap[status] || 'info'
|
|
|
|
|
|
},
|
2026-02-27 09:00:56 +08:00
|
|
|
|
|
2026-01-30 11:01:13 +08:00
|
|
|
|
getWarningClass(row) {
|
2026-02-27 09:00:56 +08:00
|
|
|
|
const total = row.highRiskCount + row.mediumRiskCount + row.lowRiskCount
|
|
|
|
|
|
if (row.highRiskCount > 0) {
|
|
|
|
|
|
return 'text-danger text-bold'
|
|
|
|
|
|
} else if (row.mediumRiskCount > 0) {
|
|
|
|
|
|
return 'text-warning text-bold'
|
|
|
|
|
|
} else if (total > 0) {
|
|
|
|
|
|
return 'text-info'
|
|
|
|
|
|
}
|
|
|
|
|
|
return ''
|
2026-01-30 11:01:13 +08:00
|
|
|
|
},
|
2026-02-27 09:00:56 +08:00
|
|
|
|
|
2026-02-27 09:51:57 +08:00
|
|
|
|
handleEnter(row) {
|
|
|
|
|
|
this.$emit('enter', row)
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
handleViewResult(row) {
|
|
|
|
|
|
this.$emit('view-result', row)
|
2026-01-30 11:01:13 +08:00
|
|
|
|
},
|
2026-02-27 09:00:56 +08:00
|
|
|
|
|
2026-02-27 09:51:57 +08:00
|
|
|
|
handleReAnalyze(row) {
|
|
|
|
|
|
this.$emit('re-analyze', row)
|
2026-01-30 11:01:13 +08:00
|
|
|
|
},
|
2026-02-27 09:00:56 +08:00
|
|
|
|
|
2026-02-27 09:51:57 +08:00
|
|
|
|
handleArchive(row) {
|
|
|
|
|
|
this.$emit('archive', row)
|
2026-01-30 11:01:13 +08:00
|
|
|
|
},
|
2026-02-27 09:00:56 +08:00
|
|
|
|
|
2026-01-30 11:01:13 +08:00
|
|
|
|
handleSizeChange(val) {
|
2026-02-27 09:00:56 +08:00
|
|
|
|
this.$emit('pagination', { pageNum: this.pageParams.pageNum, pageSize: val })
|
2026-01-30 11:01:13 +08:00
|
|
|
|
},
|
2026-02-27 09:00:56 +08:00
|
|
|
|
|
2026-01-30 11:01:13 +08:00
|
|
|
|
handleCurrentChange(val) {
|
2026-02-27 09:00:56 +08:00
|
|
|
|
this.$emit('pagination', { pageNum: val, pageSize: this.pageParams.pageSize })
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.project-table-container {
|
2026-02-27 09:00:56 +08:00
|
|
|
|
margin-top: 16px;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
|
2026-02-27 10:43:35 +08:00
|
|
|
|
// 表格整体样式 - Material Design 卡片式
|
2026-02-27 09:57:22 +08:00
|
|
|
|
:deep(.el-table) {
|
2026-02-27 10:43:35 +08:00
|
|
|
|
// 移除边框,使用阴影
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
|
|
|
|
// 悬停时卡片阴影加深
|
|
|
|
|
|
transition: box-shadow 0.3s ease;
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
}
|
2026-02-27 09:57:22 +08:00
|
|
|
|
|
2026-02-27 10:49:07 +08:00
|
|
|
|
// 表头样式 - 扁平化,无背景色
|
2026-02-27 09:57:22 +08:00
|
|
|
|
th {
|
2026-02-27 10:49:07 +08:00
|
|
|
|
background-color: transparent;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
color: #333;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 14px;
|
2026-02-27 10:49:07 +08:00
|
|
|
|
height: 56px;
|
|
|
|
|
|
padding: 16px 12px;
|
|
|
|
|
|
|
|
|
|
|
|
// 只保留底部一条分隔线
|
|
|
|
|
|
border-bottom: 2px solid #e0e0e0;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 10:49:54 +08:00
|
|
|
|
// 数据行样式 - 增加留白,移除分隔线
|
2026-02-27 09:57:22 +08:00
|
|
|
|
td {
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
font-size: 14px;
|
2026-02-27 10:49:54 +08:00
|
|
|
|
height: 64px;
|
|
|
|
|
|
padding: 20px 12px;
|
|
|
|
|
|
border-bottom: none;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 移除列分隔线
|
|
|
|
|
|
.el-table__body-wrapper {
|
|
|
|
|
|
.cell {
|
|
|
|
|
|
border-right: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 悬停效果
|
2026-02-27 10:49:54 +08:00
|
|
|
|
.el-table__row {
|
|
|
|
|
|
transition: background-color 0.2s ease;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
|
2026-02-27 10:49:54 +08:00
|
|
|
|
&:hover > td {
|
|
|
|
|
|
background-color: #fafafa !important;
|
|
|
|
|
|
}
|
2026-02-27 09:57:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 10:49:54 +08:00
|
|
|
|
// 移除额外边框
|
|
|
|
|
|
&::before,
|
2026-02-27 09:57:22 +08:00
|
|
|
|
&::after {
|
2026-02-27 10:49:54 +08:00
|
|
|
|
display: none;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.project-info-cell {
|
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
|
line-height: 1.5;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.project-name {
|
2026-01-30 11:01:13 +08:00
|
|
|
|
font-size: 14px;
|
2026-02-27 09:00:56 +08:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: #303133;
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.project-desc {
|
2026-01-30 11:01:13 +08:00
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
color: #909399;
|
2026-02-27 09:00:56 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.warning-count-wrapper {
|
|
|
|
|
|
display: inline-block;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.text-danger {
|
|
|
|
|
|
color: #f56c6c;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.text-warning {
|
|
|
|
|
|
color: #e6a23c;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.text-info {
|
|
|
|
|
|
color: #909399;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:00:56 +08:00
|
|
|
|
.text-bold {
|
|
|
|
|
|
font-weight: bold;
|
2026-01-30 11:01:13 +08:00
|
|
|
|
}
|
2026-02-27 09:57:22 +08:00
|
|
|
|
|
2026-02-27 10:52:17 +08:00
|
|
|
|
// 操作按钮样式 - Material Design 风格
|
2026-02-27 09:57:22 +08:00
|
|
|
|
:deep(.el-button--text) {
|
|
|
|
|
|
color: #1890ff;
|
2026-02-27 10:52:17 +08:00
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
transition: all 0.2s ease;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
color: #096dd9;
|
2026-02-27 10:52:17 +08:00
|
|
|
|
background-color: rgba(24, 144, 255, 0.08);
|
|
|
|
|
|
text-decoration: none;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
}
|
2026-02-27 10:52:17 +08:00
|
|
|
|
|
|
|
|
|
|
// 按钮间距
|
|
|
|
|
|
& + .el-button--text {
|
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
|
}
|
2026-02-27 09:57:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 10:52:38 +08:00
|
|
|
|
// 分页样式优化 - Material Design 风格
|
2026-02-27 09:57:22 +08:00
|
|
|
|
:deep(.el-pagination) {
|
2026-02-27 10:52:38 +08:00
|
|
|
|
margin-top: 24px;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
2026-02-27 10:52:38 +08:00
|
|
|
|
// 扁平化按钮
|
|
|
|
|
|
.btn-prev,
|
|
|
|
|
|
.btn-next,
|
|
|
|
|
|
.el-pager li {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-pager li.active {
|
|
|
|
|
|
background-color: #1890ff;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-27 09:57:22 +08:00
|
|
|
|
.el-pagination__total,
|
|
|
|
|
|
.el-pagination__sizes,
|
|
|
|
|
|
.el-pagination__jump {
|
2026-02-27 10:52:38 +08:00
|
|
|
|
color: #666;
|
2026-02-27 09:57:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-01-30 11:01:13 +08:00
|
|
|
|
</style>
|