<template>
|
<j-modal :title="title" :width="1200" :visible="visible" :confirmLoading="confirmLoading" switchFullscreen centered
|
:mask-closable="false" @ok="handleOk" @cancel="handleCancel" cancelText="关闭">
|
|
<a-spin :spinning="spinning">
|
<a-form-model ref="form" :model="model" :rules="validatorRules" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
<a-row>
|
<a-col :span="8">
|
<a-form-model-item prop="standardCode" label="工单号">
|
<a-input placeholder="工单号自动生成" v-model="model.orderNum" disabled/>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="8">
|
<a-form-model-item prop="equipmentId" label="统一编码">
|
<MaintenanceEquipmentSelect placeholder="请输入统一编码或名称搜索" v-model="model.equipmentId" :allow-clear="false"
|
maintenanceCategory="POINT_INSPECTION" :disabled="!editable"
|
@autocompleteForm="autocompleteForm"/>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="8">
|
<a-form-model-item prop="standardName" label="规范名称">
|
<a-input placeholder="选择设备后自动带出" disabled v-model="model.standardName"/>
|
</a-form-model-item>
|
</a-col>
|
</a-row>
|
|
<a-row>
|
<a-col :span="8">
|
<a-form-model-item prop="standardCode" label="规范编码">
|
<a-input placeholder="选择设备后自动带出" disabled v-model="model.standardCode"/>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="8">
|
<a-form-model-item label="保养周期">
|
<a-input placeholder="选择设备后自动带出" v-model="model.maintenancePeriod" disabled/>
|
</a-form-model-item>
|
</a-col>
|
<a-col :span="8">
|
<a-form-model-item label="点检日期" prop="inspectionDate">
|
<a-date-picker v-model="model.inspectionDate" @change="expirationTimeFrom(model.inspectionDate)"
|
:allow-clear="false" value-format="YYYY-MM-DD" style="width: 100%"/>
|
</a-form-model-item>
|
</a-col>
|
</a-row>
|
|
<a-row>
|
<a-col :span="8">
|
<a-form-model-item label="点检过期时间">
|
<a-date-picker placeholder="选择点检日期后自动带出" :value="model.expirationTime" disabled style="width: 100%"
|
value-format="YYYY-MM-DD"/>
|
</a-form-model-item>
|
</a-col>
|
</a-row>
|
|
<a-row>
|
<a-col :span="24">
|
<a-form-model-item label="备注" :labelCol="{span:2}" :wrapperCol="{span:21}" prop="remark">
|
<a-textarea v-model="model.remark" rows="3" placeholder="请输入备注"/>
|
</a-form-model-item>
|
</a-col>
|
</a-row>
|
|
<a-tabs default-active-key="1">
|
<a-tab-pane key="1" tab="日点检">
|
<j-vxe-table rowNumber bordered keep-source :height="300" always-edit :dataSource="detail.dayInspectionList"
|
:columns="detail.standardInspectionColumns"/>
|
</a-tab-pane>
|
<a-tab-pane key="2" tab="周点检" v-if="detail.weekInspectionList.length>0" forceRender>
|
<j-vxe-table rowNumber bordered always-edit keep-source :height="300"
|
:dataSource="detail.weekInspectionList"
|
:columns="detail.weekInspectionColumns"/>
|
</a-tab-pane>
|
</a-tabs>
|
</a-form-model>
|
</a-spin>
|
</j-modal>
|
</template>
|
|
<script>
|
import { getAction, httpAction } from '@/api/manage'
|
import { JVxeTableModelMixin } from '@/mixins/JVxeTableModelMixin.js'
|
import { JVXETypes } from '@/components/jeecg/JVxeTable'
|
import MaintenanceEquipmentSelect from '@views/eam/equipment/modules/MaintenanceEquipmentSelect'
|
import moment from 'moment'
|
|
export default {
|
name: 'EamMaintenanceStandardModal',
|
mixins: [JVxeTableModelMixin],
|
components: {
|
MaintenanceEquipmentSelect
|
},
|
data() {
|
return {
|
title: '操作',
|
visible: false,
|
model: {},
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 6 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 15 }
|
},
|
confirmLoading: false,
|
spinning: false,
|
editable: true,
|
validatorRules: {
|
inspectionDate: [
|
{ required: true, message: '请选择点检日期', trigger: 'change' }
|
],
|
equipmentId: [
|
{ required: true, message: '请输入统一编码或名称搜索', trigger: 'change' }
|
]
|
},
|
url: {
|
add: '/eam/eamInspectionOrder/add',
|
edit: '/eam/eamInspectionOrder/edit',
|
detail: '/eam/eamMaintenanceStandardDetail/queryList',
|
weekInspectionOrderList: '/eam/eamWeekInspectionDetail/queryStandardList'
|
},
|
standardId: '',
|
detail: {
|
dayInspectionList: [],
|
weekInspectionList: [],
|
standardInspectionColumns: [
|
{
|
title: '序号',
|
key: 'itemCode',
|
type: JVXETypes.inputNumber,
|
width: 100,
|
align: 'center',
|
disabled: true
|
},
|
{
|
title: '保养项',
|
key: 'itemName',
|
type: JVXETypes.textarea,
|
align: 'center',
|
disabled: true
|
},
|
{
|
title: '保养规范或要求',
|
key: 'itemDemand',
|
type: JVXETypes.textarea,
|
align: 'center',
|
disabled: true
|
}
|
],
|
weekInspectionColumns: [],
|
weekInspectionOrderColumns: [
|
{
|
title: '序号',
|
key: 'itemCode',
|
type: JVXETypes.normal,
|
width: 60,
|
align: 'center',
|
fixed: 'left'
|
},
|
{
|
title: '保养项',
|
key: 'itemName',
|
type: JVXETypes.textarea,
|
align: 'center',
|
fixed: 'left'
|
},
|
{
|
title: '保养要求',
|
key: 'itemDemand',
|
type: JVXETypes.textarea,
|
align: 'center',
|
fixed: 'left'
|
},
|
{
|
title: '点检结果',
|
key: 'inspectionResult',
|
type: JVXETypes.slot,
|
slotName: 'inspectionResult',
|
align: 'center'
|
},
|
{
|
title: '异常描述',
|
key: 'exceptionDescription',
|
type: JVXETypes.slot,
|
slotName: 'exceptionDescription',
|
align: 'center'
|
},
|
{
|
title: '异常是否报修',
|
key: 'reportFlag',
|
type: JVXETypes.slot,
|
slotName: 'reportFlag',
|
align: 'center'
|
}
|
]
|
}
|
}
|
},
|
methods: {
|
add() {
|
this.model = {}
|
this.visible = true
|
this.editable = true
|
this.detail.dayInspectionList = []
|
this.detail.weekInspectionList = []
|
},
|
|
edit(record) {
|
this.model = Object.assign({}, record)
|
this.editable = false
|
this.visible = true
|
this.spinning = true
|
},
|
|
async handleOk() {
|
const that = this
|
// 触发表单验证
|
this.$refs.form.validate(valid => {
|
if (valid) {
|
that.confirmLoading = that.spinning = true
|
let httpUrl = ''
|
let method = ''
|
if (!this.model.id) {
|
httpUrl += this.url.add
|
method = 'post'
|
} else {
|
httpUrl += this.url.edit
|
method = 'put'
|
}
|
this.model.standardId = this.standardId
|
httpAction(httpUrl, this.model, method).then((res) => {
|
if (res.success) {
|
that.$notification.success({
|
message: '消息',
|
description: res.message
|
})
|
that.$emit('ok')
|
that.close()
|
} else {
|
that.$notification.warning({
|
message: '消息',
|
description: res.message
|
})
|
}
|
}).finally(() => {
|
that.confirmLoading = that.spinning = false
|
})
|
} else {
|
return false
|
}
|
})
|
},
|
|
autocompleteForm(selectObj) {
|
this.model.standardName = selectObj.standardName
|
this.model.maintenancePeriod = selectObj.maintenancePeriod
|
this.model.standardCode = selectObj.standardCode
|
this.standardId = selectObj.id
|
this.detail.dayInspectionList = []
|
this.detail.weekInspectionList = []
|
this.loadDetail()
|
},
|
|
expirationTimeFrom(date) {
|
// 选择点检日期后获取点检工单明细列表
|
if (this.model.equipmentId) this.getWeekInspectionOrderListByApi()
|
//过期时间是初始时间+保养周期
|
if (date && this.model.maintenancePeriod) {
|
// 转换为时间戳字符串(或指定格式)
|
this.model.expirationTime = moment(date).add(this.model.maintenancePeriod, 'days').format('YYYY-MM-DD')
|
} else {
|
this.model.expirationTime = null // 清空无效值
|
}
|
},
|
|
//加载详情数据
|
loadDetail() {
|
|
this.spinning = true
|
getAction(this.url.detail, { standardId: this.standardId })
|
.then(res => {
|
if (res.success) {
|
this.detail.dayInspectionList = res.result.filter(item => item.itemCategory == 'DAY_INSPECTION')
|
this.detail.weekInspectionList = res.result.filter(item => item.itemCategory == 'WEEK_INSPECTION')
|
this.detail.weekInspectionColumns = this.detail.standardInspectionColumns
|
// 如果点检日期存在,则在重新选择设备后即保养周期可能发生改变后重新计算过期时间
|
if (this.model.inspectionDate) this.expirationTimeFrom(this.model.inspectionDate)
|
}
|
})
|
.finally(() => {
|
if (!this.model.inspectionDate) this.spinning = false
|
})
|
},
|
|
// 获取点检工单中的周点检明细
|
getWeekInspectionOrderListByApi() {
|
this.spinning = true
|
getAction(this.url.weekInspectionOrderList, {
|
standardId: this.standardId,
|
inspectionDate: this.model.inspectionDate
|
})
|
.then(res => {
|
if (res.success) {
|
if (res.result.length > 0) {
|
this.detail.weekInspectionList = res.result
|
this.detail.weekInspectionColumns = this.detail.weekInspectionOrderColumns
|
}
|
}
|
})
|
.finally(() => {
|
this.spinning = false
|
})
|
},
|
|
handleCancel() {
|
this.close()
|
},
|
|
close() {
|
this.$emit('close')
|
this.visible = false
|
this.$refs.form.clearValidate()
|
}
|
}
|
}
|
</script>
|