feat: 调整项目列表表格列顺序,匹配原型图

- 调整列顺序为:项目名称、更新/创建时间、创建人、状态、目标人数、预警人数、操作
- 将"项目状态"列改名为"状态"
- 将"创建时间"改为显示"更新/创建时间",优先显示更新时间
This commit is contained in:
wkc
2026-02-27 14:17:14 +08:00
parent f432870d17
commit 4119a2e4a8

View File

@@ -19,11 +19,31 @@
</template>
</el-table-column>
<!-- 项目状态 -->
<!-- 更新/创建时间 -->
<el-table-column
prop="updateTime"
label="更新/创建时间"
width="160"
align="center"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updateTime || scope.row.createTime) }}</span>
</template>
</el-table-column>
<!-- 创建人 -->
<el-table-column
prop="createByName"
label="创建人"
width="120"
align="center"
/>
<!-- 状态 -->
<el-table-column
prop="status"
label="项目状态"
width="160"
label="状态"
width="120"
align="center"
>
<template slot-scope="scope">
@@ -77,26 +97,6 @@
</template>
</el-table-column>
<!-- 创建人 -->
<el-table-column
prop="createByName"
label="创建人"
width="120"
align="center"
/>
<!-- 创建时间 -->
<el-table-column
prop="createTime"
label="创建时间"
width="160"
align="center"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime) }}</span>
</template>
</el-table-column>
<!-- 操作列 -->
<el-table-column
label="操作"