|
@@ -32,106 +32,30 @@
|
|
|
</row-item>
|
|
|
<row-item>
|
|
|
<a-form-item
|
|
|
- label="完成时间"
|
|
|
+ label="接收时间"
|
|
|
:labelCol="BaseTool.Constant.labelCol"
|
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
>
|
|
|
<a-date-picker
|
|
|
- v-decorator="['repairEndTime']"
|
|
|
+ v-decorator="['repairStartTime']"
|
|
|
style="width: 100%"
|
|
|
:format="BaseTool.Date.PICKER_NORM_DATETIME_PATTERN"
|
|
|
/>
|
|
|
</a-form-item>
|
|
|
</row-item>
|
|
|
- <!-- <row-item>
|
|
|
- <a-form-item
|
|
|
- label="紧急等级"
|
|
|
- :labelCol="BaseTool.Constant.labelCol"
|
|
|
- :wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
- >
|
|
|
- <a-select v-decorator="['level', {initialValue: 1, rules: [{required: true, message: '紧急等级不能为空'}]}]" placeholder="请选择">
|
|
|
- <a-select-option
|
|
|
- v-for="(label,value) in levelMap"
|
|
|
- :key="value"
|
|
|
- :label="label"
|
|
|
- :value="parseInt(value)">{{ label }}
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </row-item>
|
|
|
<row-item>
|
|
|
<a-form-item
|
|
|
- label="故障类别"
|
|
|
- :labelCol="BaseTool.Constant.labelCol"
|
|
|
- :wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
- >
|
|
|
- <a-tree-select
|
|
|
- style="width: 100%"
|
|
|
- :dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
|
|
|
- :treeData="treeData"
|
|
|
- :treeNodeFilterProp="'title'"
|
|
|
- :showSearch="true"
|
|
|
- v-decorator="['repairErrorTypeId']"
|
|
|
- placeholder="请选择"
|
|
|
- >
|
|
|
- </a-tree-select>
|
|
|
- </a-form-item>
|
|
|
- </row-item>-->
|
|
|
-
|
|
|
- <!--<row-item>
|
|
|
- <a-form-item
|
|
|
- label="维修耗时"
|
|
|
+ label="完成时间"
|
|
|
:labelCol="BaseTool.Constant.labelCol"
|
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
>
|
|
|
- <a-input
|
|
|
+ <a-date-picker
|
|
|
+ v-decorator="['repairEndTime']"
|
|
|
style="width: 100%"
|
|
|
- :min="1"
|
|
|
- :step="0.01"
|
|
|
- type="number"
|
|
|
- addonAfter="分钟"
|
|
|
- v-decorator="['repairMinutes', {initialValue:1, rules: [{required: false, message: '维修耗时不能为空'}]}]" />
|
|
|
- </a-form-item>
|
|
|
- </row-item>
|
|
|
- <row-item>
|
|
|
- <a-form-item
|
|
|
- label="更换备件"
|
|
|
- :labelCol="BaseTool.Constant.labelCol"
|
|
|
- :wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
- >
|
|
|
- <a-button type="primary" @click="handleAddPartUsed">更换备件</a-button>
|
|
|
- </a-form-item>
|
|
|
- </row-item>-->
|
|
|
- </row-list>
|
|
|
- <row-list :col="1">
|
|
|
- <row-item>
|
|
|
- <a-form-item
|
|
|
- label="维修描述"
|
|
|
- :labelCol="BaseTool.Constant.labelCol2"
|
|
|
- :wrapperCol="BaseTool.Constant.wrapperCol2"
|
|
|
- >
|
|
|
- <a-textarea v-decorator="['repairContent']"/>
|
|
|
+ :format="BaseTool.Date.PICKER_NORM_DATETIME_PATTERN"
|
|
|
+ />
|
|
|
</a-form-item>
|
|
|
</row-item>
|
|
|
- <!-- <row-item>
|
|
|
- <a-form-item
|
|
|
- label="维修图片"
|
|
|
- :labelCol="BaseTool.Constant.labelCol2"
|
|
|
- :wrapperCol="BaseTool.Constant.wrapperCol2"
|
|
|
- >
|
|
|
- <a-upload
|
|
|
- :action="uploadUrl"
|
|
|
- :multiple="true"
|
|
|
- list-type="picture"
|
|
|
- :file-list="defaultRepairFileList"
|
|
|
- @change="handleRepairFileChange"
|
|
|
- accept="image/*"
|
|
|
- :headers="headers"
|
|
|
- >
|
|
|
- <a-button> <a-icon type="upload" /> 上传图片 </a-button>
|
|
|
- </a-upload>
|
|
|
- </a-form-item>
|
|
|
- </row-item>-->
|
|
|
</row-list>
|
|
|
</a-form>
|
|
|
<spare-part-used-select-modal ref="sparePartUsedSelectModal" />
|
|
@@ -143,11 +67,9 @@
|
|
|
|
|
|
<script>
|
|
|
import pick from 'lodash.pick'
|
|
|
-import { updateRepairApplicationForm } from '@/api/repair/application-form'
|
|
|
-import { queryUser } from '@/api/upms/user'
|
|
|
+import { changeApplicationForm } from '@/api/repair/application-form'
|
|
|
import { fetchErrorTypeTree } from '@/api/repair/errortype'
|
|
|
import SparePartUsedSelectModal from '@/views/sqarepartmanage/sparepartused/modules/SparePartUsedSelectModal'
|
|
|
-import { uploadUrl } from '@/api/upms/file'
|
|
|
import Vue from 'vue'
|
|
|
import { ACCESS_TOKEN } from '@/store/mutation-types'
|
|
|
|
|
@@ -171,11 +93,7 @@ export default {
|
|
|
sourceMap: {},
|
|
|
levelMap: {},
|
|
|
needStopMap: {},
|
|
|
- statusMap: {},
|
|
|
- uploadUrl: uploadUrl,
|
|
|
- defaultRepairFileList: [],
|
|
|
- repairFileList: [], // 维修图片,
|
|
|
- userList: []
|
|
|
+ statusMap: {}
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
@@ -205,6 +123,7 @@ export default {
|
|
|
this.modalTitle = '维修完成'
|
|
|
const { form: { setFieldsValue } } = this
|
|
|
// 日期处理
|
|
|
+ record.repairStartTime = this.BaseTool.Date.formatter(record.repairStartTime, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
|
record.repairEndTime = this.BaseTool.Date.formatter(record.repairEndTime, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
|
this.$nextTick(() => {
|
|
|
setFieldsValue(Object.assign(pick(record, [
|
|
@@ -215,14 +134,13 @@ export default {
|
|
|
'repairContent',
|
|
|
'category',
|
|
|
'repairErrorTypeId',
|
|
|
- 'repairEndTime'
|
|
|
+ 'repairEndTime',
|
|
|
+ 'repairStartTime'
|
|
|
])))
|
|
|
})
|
|
|
},
|
|
|
getUsers () {
|
|
|
- queryUser({ status: 1 }).then(res => {
|
|
|
- this.userList = res.data
|
|
|
- })
|
|
|
+
|
|
|
},
|
|
|
changePlanFlag (value) {
|
|
|
this.category = value
|
|
@@ -237,22 +155,6 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
- handleRepairFileChange (info) {
|
|
|
- this.defaultRepairFileList = info.fileList
|
|
|
- this.repairFileList = this.setFileList(info, 12)
|
|
|
- },
|
|
|
- setFileList (info, type) {
|
|
|
- const file = info.file
|
|
|
- const fileList = info.fileList
|
|
|
- if (file.status === 'done') {
|
|
|
- return this.BaseTool.UPLOAD.getUploadFileDTO(fileList, type)
|
|
|
- } else if (file.status === 'removed') {
|
|
|
- return this.BaseTool.UPLOAD.getUploadFileDTO(fileList, type)
|
|
|
- } else if (file.status === 'error') {
|
|
|
- this.$message.error('上传失败')
|
|
|
- return []
|
|
|
- }
|
|
|
- },
|
|
|
save () {
|
|
|
const { form: { validateFieldsAndScroll } } = this
|
|
|
this.confirmLoading = true
|
|
@@ -263,8 +165,9 @@ export default {
|
|
|
}
|
|
|
// 日期处理
|
|
|
values.repairFileList = this.repairFileList
|
|
|
+ values.repairStartTime = this.BaseTool.Date.formatter(values.repairStartTime, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
|
values.repairEndTime = this.BaseTool.Date.formatter(values.repairEndTime, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
|
- updateRepairApplicationForm(values).then(() => {
|
|
|
+ changeApplicationForm(values).then(() => {
|
|
|
this.$message.info('维修完成,请完成后续维修报告,完成后提交审核;')
|
|
|
this.handleCancel(values)
|
|
|
}).catch(() => {
|