|
|
|
@ -1,6 +1,13 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
<el-form
|
|
|
|
|
:model="queryParams"
|
|
|
|
|
ref="queryForm"
|
|
|
|
|
size="small"
|
|
|
|
|
:inline="true"
|
|
|
|
|
v-show="showSearch"
|
|
|
|
|
label-width="68px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="报修单号" prop="orderCode">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.orderCode"
|
|
|
|
@ -27,11 +34,16 @@
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
:picker-options="pickerOptions1">
|
|
|
|
|
:picker-options="pickerOptions1"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="报修来源" prop="orderSource">
|
|
|
|
|
<el-select v-model="queryParams.orderSource" style="width:195px" clearable>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.orderSource"
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in dict.type.device_order_source"
|
|
|
|
|
:key="dict.value"
|
|
|
|
@ -50,7 +62,8 @@
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
:picker-options="pickerOptions2">
|
|
|
|
|
:picker-options="pickerOptions2"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="报修人" prop="orderRepairman">
|
|
|
|
@ -70,8 +83,16 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleQuery"
|
|
|
|
|
>搜索</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
|
|
|
>重置</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
@ -84,7 +105,8 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleAdd"
|
|
|
|
|
v-hasPermi="['device:faultReport:add']"
|
|
|
|
|
>添加报修</el-button>
|
|
|
|
|
>添加报修</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
@ -95,7 +117,8 @@
|
|
|
|
|
:disabled="single"
|
|
|
|
|
@click="handleUpdate"
|
|
|
|
|
v-hasPermi="['device:faultReport:edit']"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
>修改</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
@ -106,7 +129,8 @@
|
|
|
|
|
:disabled="multiple"
|
|
|
|
|
@click="handleDelete"
|
|
|
|
|
v-hasPermi="['device:faultReport:remove']"
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
>删除</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
@ -116,39 +140,92 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
v-hasPermi="['device:faultReport:export']"
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
>导出</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
<right-toolbar
|
|
|
|
|
:showSearch.sync="showSearch"
|
|
|
|
|
@queryTable="getList"
|
|
|
|
|
></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="faultReportList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="faultReportList"
|
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column label="报修单号" align="center" prop="orderCode" width="150"/>
|
|
|
|
|
<el-table-column label="设备编码" align="center" prop="equipmentCode" width="100"/>
|
|
|
|
|
<el-table-column label="故障描述" align="center" prop="orderDesc" width="200"/>
|
|
|
|
|
<el-table-column label="故障时间" align="center" prop="orderBreakdownTime" width="180">
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="报修单号"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="orderCode"
|
|
|
|
|
width="150"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="设备编码"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="equipmentCode"
|
|
|
|
|
width="100"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="故障描述"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="orderDesc"
|
|
|
|
|
width="200"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="故障时间"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="orderBreakdownTime"
|
|
|
|
|
width="180"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.orderBreakdownTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="报修来源" align="center" prop="orderSource" />
|
|
|
|
|
<el-table-column label="报修时间" align="center" prop="orderTime" width="180">
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="报修时间"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="orderTime"
|
|
|
|
|
width="180"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.orderTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="报修人" align="center" prop="orderRepairman" />
|
|
|
|
|
<el-table-column label="联系方式" align="center" prop="orderConnection" width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="联系方式"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="orderConnection"
|
|
|
|
|
width="120"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="处理状态" align="center" prop="orderStatus" />
|
|
|
|
|
<el-table-column label="报修去向" align="center" prop="repairDestination" width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="报修去向"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="repairDestination"
|
|
|
|
|
width="120"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="故障图片" align="center" prop="orderPicture" />
|
|
|
|
|
<el-table-column label="创建人" align="center" prop="createBy" />
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="创建时间"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="createTime"
|
|
|
|
|
width="180"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.orderBreakdownTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180">
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="操作"
|
|
|
|
|
align="center"
|
|
|
|
|
class-name="small-padding fixed-width"
|
|
|
|
|
width="180"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
@ -156,21 +233,24 @@
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['device:faultReport:edit']"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
>修改</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['device:faultReport:remove']"
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
>删除</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-circle-check"
|
|
|
|
|
@click="handleCheck(scope.row)"
|
|
|
|
|
v-hasPermi="['device:faultReport:check']"
|
|
|
|
|
>审核</el-button>
|
|
|
|
|
>审核</el-button
|
|
|
|
|
>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -184,25 +264,46 @@
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- 审核故障报修对话框 -->
|
|
|
|
|
<el-dialog :title="title" :visible.sync="openCheck" width="1000px" append-to-body>
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="title"
|
|
|
|
|
:visible.sync="openCheck"
|
|
|
|
|
width="1000px"
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="设备编码" prop="equipmentCode">
|
|
|
|
|
<el-input v-model="form.equipmentCode" disabled style="width:195px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.equipmentCode"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
<ItemSelect ref="itemSelect" @onSelected="onItemSelectedEquipment" > </ItemSelect>
|
|
|
|
|
<ItemSelect
|
|
|
|
|
ref="itemSelect"
|
|
|
|
|
@onSelected="onItemSelectedEquipment"
|
|
|
|
|
>
|
|
|
|
|
</ItemSelect>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="设备名称" prop="equipmentName">
|
|
|
|
|
<el-input v-model="form.equipmentName" disabled style="width:195px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.equipmentName"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="设备类型" prop="equipmentTypeName">
|
|
|
|
|
<el-input v-model="form.equipmentTypeName" disabled style="width:195px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.equipmentTypeName"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -211,9 +312,17 @@
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="规格型号" prop="equipmentSpec">
|
|
|
|
|
<el-input v-model="form.equipmentSpec" disabled style="width:195px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.equipmentSpec"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
<ItemSelect ref="itemSelect" @onSelected="onItemSelectedEquipment" > </ItemSelect>
|
|
|
|
|
<ItemSelect
|
|
|
|
|
ref="itemSelect"
|
|
|
|
|
@onSelected="onItemSelectedEquipment"
|
|
|
|
|
>
|
|
|
|
|
</ItemSelect>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
@ -224,7 +333,11 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="所在位置" prop="equipmentLocation">
|
|
|
|
|
<el-input v-model="form.equipmentLocation" disabled style="width:195px">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.equipmentLocation"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -246,7 +359,11 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="报修来源" prop="orderSource">
|
|
|
|
|
<el-select v-model="form.orderSource" style="width:195px" disabled>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="form.orderSource"
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
disabled
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in dict.type.device_order_source"
|
|
|
|
|
:key="dict.value"
|
|
|
|
@ -264,7 +381,8 @@
|
|
|
|
|
type="datetime"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
placeholder="报修时间">
|
|
|
|
|
placeholder="报修时间"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -272,18 +390,34 @@
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="报修人" prop="orderRepairman">
|
|
|
|
|
<el-input v-model="form.orderRepairman" placeholder="请输入报修人" disabled style="width:195px"/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.orderRepairman"
|
|
|
|
|
placeholder="请输入报修人"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="联系方式" prop="orderConnection">
|
|
|
|
|
<el-input v-model="form.orderConnection" placeholder="请输入联系方式" disabled style="width:195px"/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.orderConnection"
|
|
|
|
|
placeholder="请输入联系方式"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 195px"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-form-item label="故障描述" prop="orderDesc">
|
|
|
|
|
<el-input v-model="form.orderDesc" placeholder="请输入故障描述" type="textarea" :autosize="{ minRows: 2, maxRows: 4}" disabled/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.orderDesc"
|
|
|
|
|
placeholder="请输入故障描述"
|
|
|
|
|
type="textarea"
|
|
|
|
|
:autosize="{ minRows: 2, maxRows: 4 }"
|
|
|
|
|
disabled
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-form-item label="故障图片" prop="orderPicture">
|
|
|
|
@ -297,12 +431,13 @@
|
|
|
|
|
<el-radio label="计划性维修">计划性维修</el-radio>
|
|
|
|
|
<el-radio label="不维修">不维修</el-radio>
|
|
|
|
|
<el-radio label="委外维修">委外维修</el-radio>
|
|
|
|
|
<el-radio label="立即维修" @click="timeBackFilling">立即维修</el-radio>
|
|
|
|
|
<el-radio label="立即维修" @click="timeBackFilling"
|
|
|
|
|
>立即维修</el-radio
|
|
|
|
|
>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8" v-if="form.repairDestination == '计划性维修'">
|
|
|
|
|
<el-form-item prop="workTeam" label="维修组">
|
|
|
|
|
<el-input v-model="form.workTeam" placeholder="请选择维修组" />
|
|
|
|
@ -314,7 +449,8 @@
|
|
|
|
|
clearable
|
|
|
|
|
v-model="form.workPlanTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
placeholder="请选择计划维修时间">
|
|
|
|
|
placeholder="请选择计划维修时间"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -324,14 +460,11 @@
|
|
|
|
|
clearable
|
|
|
|
|
v-model="form.workPlanDownTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
placeholder="请选择计划停机时间">
|
|
|
|
|
placeholder="请选择计划停机时间"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8" v-if="form.repairDestination == '立即维修'">
|
|
|
|
|
<el-form-item prop="workTeam" label="维修组">
|
|
|
|
|
<el-input v-model="form.workTeam" placeholder="请选择维修组" />
|
|
|
|
@ -343,7 +476,8 @@
|
|
|
|
|
clearable
|
|
|
|
|
v-model="form.workPlanTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
placeholder="">
|
|
|
|
|
placeholder=""
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -353,14 +487,11 @@
|
|
|
|
|
clearable
|
|
|
|
|
v-model="form.workPlanDownTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
placeholder="">
|
|
|
|
|
placeholder=""
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8" v-if="form.repairDestination == '委外维修'">
|
|
|
|
|
<el-form-item prop="workTeam" label="委外单位">
|
|
|
|
|
<el-input v-model="form.workTeam" placeholder="请选填写委外单位" />
|
|
|
|
@ -371,14 +502,16 @@
|
|
|
|
|
<el-input v-model="form.workTeam" placeholder="请选填写委外人员" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="24" v-if="form.repairDestination == '委外维修'">
|
|
|
|
|
<el-form-item prop="workPlanDownTime" label="委外原因">
|
|
|
|
|
<el-input v-model="form.orderDesc" placeholder="请输入委外原因" type="textarea" :autosize="{ minRows: 2, maxRows: 4}"/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.orderDesc"
|
|
|
|
|
placeholder="请输入委外原因"
|
|
|
|
|
type="textarea"
|
|
|
|
|
:autosize="{ minRows: 2, maxRows: 4 }"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitCheckForm">确 定</el-button>
|
|
|
|
@ -387,15 +520,31 @@
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改故障报修对话框 -->
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="title"
|
|
|
|
|
:visible.sync="open"
|
|
|
|
|
width="1000px"
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="设备编码" prop="equipmentCode">
|
|
|
|
|
<el-input v-model="form.equipmentCode" placeholder="请选择辅助设备" >
|
|
|
|
|
<el-button slot="append" @click="handleSelectEquipment" icon="el-icon-search"></el-button>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.equipmentCode"
|
|
|
|
|
placeholder="请选择辅助设备"
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
slot="append"
|
|
|
|
|
@click="handleSelectEquipment"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
></el-button>
|
|
|
|
|
</el-input>
|
|
|
|
|
<ItemSelect ref="itemSelect" @onSelected="onItemSelectedEquipment" > </ItemSelect>
|
|
|
|
|
<ItemSelect
|
|
|
|
|
ref="itemSelect"
|
|
|
|
|
@onSelected="onItemSelectedEquipment"
|
|
|
|
|
>
|
|
|
|
|
</ItemSelect>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
@ -403,7 +552,8 @@
|
|
|
|
|
<el-date-picker
|
|
|
|
|
clearable
|
|
|
|
|
v-model="form.orderBreakdownTime"
|
|
|
|
|
placeholder="选择日期时间">
|
|
|
|
|
placeholder="选择日期时间"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -428,24 +578,36 @@
|
|
|
|
|
v-model="form.orderTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
placeholder="报修时间">
|
|
|
|
|
placeholder="报修时间"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="报修人" prop="orderRepairman">
|
|
|
|
|
<el-input v-model="form.orderRepairman" placeholder="请输入报修人" />
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.orderRepairman"
|
|
|
|
|
placeholder="请输入报修人"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="联系方式" prop="orderConnection">
|
|
|
|
|
<el-input v-model="form.orderConnection" placeholder="请输入联系方式" />
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.orderConnection"
|
|
|
|
|
placeholder="请输入联系方式"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-form-item label="故障描述" prop="orderDesc">
|
|
|
|
|
<el-input v-model="form.orderDesc" placeholder="请输入故障描述" type="textarea" :autosize="{ minRows: 2, maxRows: 4}"/>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.orderDesc"
|
|
|
|
|
placeholder="请输入故障描述"
|
|
|
|
|
type="textarea"
|
|
|
|
|
:autosize="{ minRows: 2, maxRows: 4 }"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-form-item label="故障图片" prop="orderPicture">
|
|
|
|
@ -457,17 +619,24 @@
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { listFaultReport, getFaultReport, delFaultReport, addFaultReport, updateFaultReport,getEquipmentList,checkFaultReport } from "@/api/device/faultReport";
|
|
|
|
|
import {
|
|
|
|
|
listFaultReport,
|
|
|
|
|
getFaultReport,
|
|
|
|
|
delFaultReport,
|
|
|
|
|
addFaultReport,
|
|
|
|
|
updateFaultReport,
|
|
|
|
|
getEquipmentList,
|
|
|
|
|
checkFaultReport,
|
|
|
|
|
} from "@/api/device/faultReport";
|
|
|
|
|
import ItemSelect from "./single.vue";
|
|
|
|
|
export default {
|
|
|
|
|
name: "FaultReport",
|
|
|
|
|
components: { ItemSelect },
|
|
|
|
|
dicts: ['device_order_source'],
|
|
|
|
|
dicts: ["device_order_source"],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
equipmentCodeOption: [],
|
|
|
|
@ -512,68 +681,75 @@ export default {
|
|
|
|
|
attr3: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
orderBreakdownTimeArray: [],
|
|
|
|
|
orderTimeArray: []
|
|
|
|
|
orderTimeArray: [],
|
|
|
|
|
},
|
|
|
|
|
// 日期范围选择快捷
|
|
|
|
|
pickerOptions1: {
|
|
|
|
|
shortcuts: [{
|
|
|
|
|
text: '最近一周',
|
|
|
|
|
shortcuts: [
|
|
|
|
|
{
|
|
|
|
|
text: "最近一周",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
text: '最近一个月',
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近一个月",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
text: '最近三个月',
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近三个月",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
pickerOptions2: {
|
|
|
|
|
shortcuts: [{
|
|
|
|
|
text: '最近一周',
|
|
|
|
|
shortcuts: [
|
|
|
|
|
{
|
|
|
|
|
text: "最近一周",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
text: '最近一个月',
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近一个月",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}, {
|
|
|
|
|
text: '最近三个月',
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近三个月",
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
|
}
|
|
|
|
|
}]
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
|
|
|
|
}
|
|
|
|
|
rules: {},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
@ -595,7 +771,7 @@ export default {
|
|
|
|
|
/** 查询故障报修列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listFaultReport(this.queryParams).then(response => {
|
|
|
|
|
listFaultReport(this.queryParams).then((response) => {
|
|
|
|
|
this.faultReportList = response.rows;
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -633,7 +809,7 @@ export default {
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null
|
|
|
|
|
updateTime: null,
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
@ -649,9 +825,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
this.ids = selection.map(item => item.orderId)
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
this.ids = selection.map((item) => item.orderId);
|
|
|
|
|
this.single = selection.length !== 1;
|
|
|
|
|
this.multiple = !selection.length;
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd() {
|
|
|
|
@ -663,8 +839,8 @@ export default {
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
const orderId = row.orderId || this.ids
|
|
|
|
|
getFaultReport(orderId).then(response => {
|
|
|
|
|
const orderId = row.orderId || this.ids;
|
|
|
|
|
getFaultReport(orderId).then((response) => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "修改故障报修";
|
|
|
|
@ -673,8 +849,8 @@ export default {
|
|
|
|
|
/** 审核按钮操作 */
|
|
|
|
|
handleCheck(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
const orderId = row.orderId || this.ids
|
|
|
|
|
getFaultReport(orderId).then(response => {
|
|
|
|
|
const orderId = row.orderId || this.ids;
|
|
|
|
|
getFaultReport(orderId).then((response) => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.openCheck = true;
|
|
|
|
|
this.title = "审核故障报修";
|
|
|
|
@ -682,16 +858,16 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.orderId != null) {
|
|
|
|
|
updateFaultReport(this.form).then(response => {
|
|
|
|
|
updateFaultReport(this.form).then((response) => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addFaultReport(this.form).then(response => {
|
|
|
|
|
addFaultReport(this.form).then((response) => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
@ -702,10 +878,10 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
/** 审核提交按钮 */
|
|
|
|
|
submitCheckForm() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.orderId != null) {
|
|
|
|
|
checkFaultReport(this.form).then(response => {
|
|
|
|
|
checkFaultReport(this.form).then((response) => {
|
|
|
|
|
this.$modal.msgSuccess("审核成功");
|
|
|
|
|
this.openCheck = false;
|
|
|
|
|
this.getList();
|
|
|
|
@ -717,19 +893,27 @@ export default {
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
handleDelete(row) {
|
|
|
|
|
const orderIds = row.orderId || this.ids;
|
|
|
|
|
this.$modal.confirm('是否确认删除故障报修编号为"' + orderIds + '"的数据项?').then(function() {
|
|
|
|
|
this.$modal
|
|
|
|
|
.confirm('是否确认删除故障报修编号为"' + orderIds + '"的数据项?')
|
|
|
|
|
.then(function () {
|
|
|
|
|
return delFaultReport(orderIds);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
|
|
|
|
this.download('device/faultReport/export', {
|
|
|
|
|
...this.queryParams
|
|
|
|
|
}, `faultReport_${new Date().getTime()}.xlsx`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.download(
|
|
|
|
|
"device/faultReport/export",
|
|
|
|
|
{
|
|
|
|
|
...this.queryParams,
|
|
|
|
|
},
|
|
|
|
|
`faultReport_${new Date().getTime()}.xlsx`
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|