change(dms): 更新工单故障实例表格列配置

- 启用报修来源类型列的显示
- 隐藏工单状态列
- 隐藏申请人列
- 隐藏要求完成时间列
- 隐藏工单类型列的显示
- 保留关键业务字段的展示
master
zangch@mesnac.com 4 days ago
parent 89b0e1af5f
commit e919fa7182

@ -37,17 +37,17 @@
<!-- <el-table-column type="selection" width="55" align="center" />-->
<!-- <el-table-column label="主键标识;此表不会长期保存" align="center" prop="repairInstanceId" />-->
<!-- <el-table-column label="报修来源类型(1检修2点检3巡检9其他)" align="center" prop="faultSourceType" />-->
<!-- <el-table-column label="报修来源类型" align="center" prop="faultSourceType">-->
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.dms_fault_source_type" :value="scope.row.faultSourceType"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="报修来源类型" align="center" prop="faultSourceType">
<template slot-scope="scope">
<dict-tag :options="dict.type.dms_fault_source_type" :value="scope.row.faultSourceType"/>
</template>
</el-table-column>
<!-- <el-table-column label="报修来源ID" align="center" prop="faultSourceId" />-->
<!-- <el-table-column label="工单流程ID关联wf_process的wf_process_id" align="center" prop="wfProcessId" />-->
<el-table-column label="工单编号" align="center" prop="billsFaultCode" />
<!-- <el-table-column label="工单状态0-待维修1-维修中2-维修完成3-待检修4-检修中5-检修完成" align="center" prop="billsStatus" />-->
<el-table-column label="工单状态" align="center" prop="billsStatus">
<!-- <el-table-column label="工单状态" align="center" prop="billsStatus">
<template slot-scope="scope">
<dict-tag :options="dict.type.bills_status" :value="scope.row.billsStatus"/>
</template>
@ -56,8 +56,8 @@
<template slot-scope="scope">
<dict-tag :options="dict.type.approve_status" :value="scope.row.approveStatus"/>
</template>
</el-table-column>
<el-table-column label="申请人" align="center" prop="applyUser" />
</el-table-column>-->
<!-- <el-table-column label="申请人" align="center" prop="applyUser" />-->
<el-table-column label="申请时间" align="center" prop="applyTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.applyTime, '{y}-{m}-{d}') }}</span>
@ -73,17 +73,17 @@
<span>{{ parseTime(scope.row.realEndTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="要求完成时间" align="center" prop="requireEndTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.requireEndTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="要求完成时间" align="center" prop="requireEndTime" width="180">-->
<!-- <template slot-scope="scope">-->
<!-- <span>{{ parseTime(scope.row.requireEndTime, '{y}-{m}-{d}') }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="工单类型" align="center" prop="instanceType" />-->
<el-table-column label="工单类型" align="center" prop="instanceType">
<!-- <el-table-column label="工单类型" align="center" prop="instanceType">
<template slot-scope="scope">
<dict-tag :options="dict.type.dms_instance_type" :value="scope.row.instanceType"/>
</template>
</el-table-column>
</el-table-column>-->
<!-- <el-table-column label="备注" align="center" prop="remark" />-->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
<template slot-scope="scope">

Loading…
Cancel
Save