| | |
| | | > |
| | | <el-table-column prop="id" label="编号" width="80" /> |
| | | <el-table-column prop="name" label="名称" /> |
| | | <el-table-column prop="type" label="类型" width="120" /> |
| | | <el-table-column prop="status" label="状态" width="100"> |
| | | <el-table-column prop="status" label="状态"> |
| | | <template #default="scope"> |
| | | <el-tag :type="getStatusType(scope.row.status)"> |
| | | {{ scope.row.status }} |
| | | </el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="progress" label="进度" width="120"> |
| | | <el-table-column prop="progress" label="进度"> |
| | | <template #default="scope"> |
| | | <el-progress :percentage="scope.row.progress" :status="getProgressStatus(scope.row.progress)" /> |
| | | </template> |
| | |
| | | type: '金属材料', |
| | | status: '检测中', |
| | | progress: 75, |
| | | createTime: '2024-01-15 09:30:00', |
| | | updateTime: '2024-01-20 14:20:00' |
| | | createTime: '2025-01-15 09:30:00', |
| | | updateTime: '2025-01-20 14:20:00' |
| | | }, |
| | | { |
| | | id: 'SP002', |
| | |
| | | type: '塑料制品', |
| | | status: '已完成', |
| | | progress: 100, |
| | | createTime: '2024-01-10 10:15:00', |
| | | updateTime: '2024-01-18 16:45:00' |
| | | createTime: '2025-01-10 10:15:00', |
| | | updateTime: '2025-01-18 16:45:00' |
| | | }, |
| | | { |
| | | id: 'SP003', |
| | |
| | | type: '电子元件', |
| | | status: '待检测', |
| | | progress: 0, |
| | | createTime: '2024-01-22 08:45:00', |
| | | updateTime: '2024-01-22 08:45:00' |
| | | createTime: '2025-01-22 08:45:00', |
| | | updateTime: '2025-01-22 08:45:00' |
| | | }, |
| | | { |
| | | id: 'EQ001', |
| | |
| | | type: '光谱仪', |
| | | status: '使用中', |
| | | progress: 60, |
| | | createTime: '2024-01-05 14:20:00', |
| | | updateTime: '2024-01-20 11:30:00' |
| | | createTime: '2025-01-05 14:20:00', |
| | | updateTime: '2025-01-20 11:30:00' |
| | | }, |
| | | { |
| | | id: 'EQ002', |
| | |
| | | type: '显微镜', |
| | | status: '空闲', |
| | | progress: 0, |
| | | createTime: '2024-01-08 16:10:00', |
| | | updateTime: '2024-01-19 09:15:00' |
| | | createTime: '2025-01-08 16:10:00', |
| | | updateTime: '2025-01-19 09:15:00' |
| | | } |
| | | ] |
| | | |