|
|
|
@ -41,10 +41,10 @@
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="处置时长,单位:分钟" prop="handlingDuration">
|
|
|
|
|
<el-form-item label="处置时长" prop="handlingDuration">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.handlingDuration"
|
|
|
|
|
placeholder="请输入处置时长,单位:分钟"
|
|
|
|
|
placeholder="请输入处置时长"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
@ -121,7 +121,7 @@
|
|
|
|
|
<el-table-column label="故障情况处置" align="center" prop="faultSituationHandling" v-if="columns[5].visible"/>
|
|
|
|
|
<el-table-column label="影响" align="center" prop="impact" v-if="columns[6].visible"/>
|
|
|
|
|
<el-table-column label="故障发生时间" align="center" prop="faultOccurrenceTime" v-if="columns[7].visible"/>
|
|
|
|
|
<el-table-column label="处置时长,单位:分钟" align="center" prop="handlingDuration" v-if="columns[8].visible"/>
|
|
|
|
|
<el-table-column label="处置时长" align="center" prop="handlingDuration" v-if="columns[8].visible"/>
|
|
|
|
|
<el-table-column label="维修更换的主要元器件" align="center" prop="mainComponentsRepaired" v-if="columns[9].visible"/>
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remarks" v-if="columns[10].visible"/>
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="100">
|
|
|
|
@ -187,8 +187,8 @@
|
|
|
|
|
format="HH:mm:ss"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="处置时长,单位:分钟" prop="handlingDuration">
|
|
|
|
|
<el-input v-model="form.handlingDuration" placeholder="请输入处置时长,单位:分钟" />
|
|
|
|
|
<el-form-item label="处置时长" prop="handlingDuration">
|
|
|
|
|
<el-input v-model="form.handlingDuration" placeholder="请输入处置时长" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="维修更换的主要元器件" prop="mainComponentsRepaired">
|
|
|
|
|
<el-input v-model="form.mainComponentsRepaired" type="textarea" placeholder="请输入内容" />
|
|
|
|
@ -289,7 +289,7 @@
|
|
|
|
|
{ key: 5, label: `故障情况处置`, visible: true },
|
|
|
|
|
{ key: 6, label: `影响`, visible: true },
|
|
|
|
|
{ key: 7, label: `故障发生时间`, visible: true },
|
|
|
|
|
{ key: 8, label: `处置时长,单位:分钟`, visible: true },
|
|
|
|
|
{ key: 8, label: `处置时长`, visible: true },
|
|
|
|
|
{ key: 9, label: `维修更换的主要元器件`, visible: true },
|
|
|
|
|
{ key: 10, label: `备注`, visible: true },
|
|
|
|
|
],
|
|
|
|
|