test:故障记录展示数据修改

master
袁子龙 2024-09-24 10:24:33 +08:00
parent 9e9646e2f2
commit 1c6eff8197
1 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,11 @@
<el-table-column label="VIN码" align="center" prop="vin" />
<el-table-column label="开始时间" align="center" prop="createTime" />
<el-table-column label="结束时间" align="center" prop="updateTime" />
<el-table-column align="center" label="状态" prop="status">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_car_fault_log_status" :value="scope.row.status" />
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
@ -76,6 +81,7 @@
import { listLog ,listStatusIgnore,listStatusProcess,listStatusSolve} from '../../../api/breakdown/Log';
export default {
dicts:['sys_car_fault_log_status'],
name:"log",
components:{},
props:{},