|
|
|
<template>
|
|
|
|
<!-- 添加维修工单 -->
|
|
|
|
<view class="add-form-container">
|
|
|
|
<u-form :model="form" ref="form1" label-width="160rpx">
|
|
|
|
<u-form-item label="检修描述" prop="describes" required :class="form.id?'disabled':''">
|
|
|
|
<u-input v-model="form.describes" placeholder="请输入检修描述" :disabled="form&&form.id?true:false" />
|
|
|
|
</u-form-item>
|
|
|
|
<u-form-item label="维修工单" prop="maintenanceNumber" :class="form.id?'disabled':''">
|
|
|
|
<view class="select" @click="openSingleColumn('maintenanceNumber',form.maintenanceNumber,repairOrderList)">
|
|
|
|
<view class="input" v-if='form.maintenanceNumber'>
|
|
|
|
{{selectFormat(form.maintenanceNumber,repairOrderList)}}
|
|
|
|
</view>
|
|
|
|
<view class="placeholder" v-else>
|
|
|
|
{{`请选择维修工单`}}
|
|
|
|
</view>
|
|
|
|
<u-icon name="arrow-right" color="#aaaaaa" size="28" v-if="!form.id"></u-icon>
|
|
|
|
</view>
|
|
|
|
</u-form-item>
|
|
|
|
<u-form-item :label="`${type=='DEVICE'?'设备' : '模具'}名称`" prop="factoryAreaName" required :class="isDisabled?'disabled':''">
|
|
|
|
<view class="select" @click="openSingleColumn('deviceNumber',form.deviceNumber,deviceList)">
|
|
|
|
<view class="input" v-if='form.deviceNumber'>
|
|
|
|
{{selectFormat(form.deviceNumber,deviceList)}}
|
|
|
|
</view>
|
|
|
|
<view class="placeholder" v-else>
|
|
|
|
{{`请输入${type=='DEVICE'?'设备' : '模具'}名称`}}
|
|
|
|
</view>
|
|
|
|
<u-icon name="arrow-right" color="#aaaaaa" size="28" v-if="!form.id"></u-icon>
|
|
|
|
</view>
|
|
|
|
</u-form-item>
|
|
|
|
<u-form-item label="所属厂区" prop="factoryAreaName" class="disabled">
|
|
|
|
<u-input v-model="form.factoryAreaName" placeholder="请输入所属厂区" disabled />
|
|
|
|
</u-form-item>
|
|
|
|
<u-form-item label="故障类型" prop="faultType" required>
|
|
|
|
<view class="select" @click="openSingleColumn('faultType',form.faultType,faultType)">
|
|
|
|
<view class="input" v-if='form.faultType'>
|
|
|
|
{{selectFormat(form.faultType,faultType)}}
|
|
|
|
</view>
|
|
|
|
<view class="placeholder" v-else>
|
|
|
|
{{`请选择故障类型`}}
|
|
|
|
</view>
|
|
|
|
<u-icon name="arrow-right" color="#aaaaaa" size="28"></u-icon>
|
|
|
|
</view>
|
|
|
|
</u-form-item>
|
|
|
|
</u-form>
|
|
|
|
<view class="footer">
|
|
|
|
<view class="btns">
|
|
|
|
<button class="reset" @click="reset">重置</button>
|
|
|
|
<button class="sure" @click="submit" :loading='loading' :disabled='loading'>确定</button>
|
|
|
|
</view>
|
|
|
|
<view style="height: constant(safe-area-inset-bottom); height: env(safe-area-inset-bottom);"></view>
|
|
|
|
</view>
|
|
|
|
<u-select v-model="singleColumnShow" mode="single-column" :default-value='singleColumnDefaultValue'
|
|
|
|
:list="singleColumnList" @confirm="chooseSingleColumn"></u-select>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import * as overhaulOrderApi from "@/api/overhaulOrder.js"
|
|
|
|
import * as moldApi from "@/api/mold.js"
|
|
|
|
import * as dictApi from "@/api/dict.js"
|
|
|
|
import * as repairOrderApi from "@/api/repairOrder.js"
|
|
|
|
import * as deviceApi from "@/api/device.js"
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
loading: false,
|
|
|
|
type: "",
|
|
|
|
form: {
|
|
|
|
id: '',
|
|
|
|
describes: "",
|
|
|
|
maintenanceNumber: '',
|
|
|
|
faultType: ''
|
|
|
|
},
|
|
|
|
repairOrderList: [], //维修工单列表
|
|
|
|
singleColumnShow: false,
|
|
|
|
singleColumnDefaultValue: [],
|
|
|
|
singleColumnList: [],
|
|
|
|
field: '',
|
|
|
|
faultType: [], //故障类型字典项
|
|
|
|
deviceList: [], //设备列表
|
|
|
|
isDisabled:false,//判断设备列表是否可以选择
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 触发提交表单
|
|
|
|
submit() {
|
|
|
|
// 校验
|
|
|
|
if (!this.form.describes) {
|
|
|
|
this.$modal.showToast('请输入故障描述')
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!this.form.deviceNumber) {
|
|
|
|
this.$modal.showToast('请选择设备名称或者维修工单')
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!this.form.faultType) {
|
|
|
|
this.$modal.showToast('请选择故障类型')
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const data = {
|
|
|
|
id: this.form && this.form.id ? this.form.id : '',
|
|
|
|
describes: this.form.describes,
|
|
|
|
maintenanceNumber: this.form.maintenanceNumber,
|
|
|
|
deviceNumber: this.form.deviceNumber,
|
|
|
|
faultType: this.form.faultType,
|
|
|
|
}
|
|
|
|
if (this.form.id) {
|
|
|
|
this.$modal.confirm('是否修改检修工单').then(() => {
|
|
|
|
this.$modal.loading('加载中')
|
|
|
|
this.loading = true
|
|
|
|
overhaulOrderApi.overhaulOrderUpdate(data).then((res) => {
|
|
|
|
this.$modal.closeLoading()
|
|
|
|
if (res.data) {
|
|
|
|
this.$modal.showToast('修改成功')
|
|
|
|
setTimeout(() => {
|
|
|
|
this.$tab.navigateBack()
|
|
|
|
this.loading = false
|
|
|
|
}, 1500)
|
|
|
|
} else {
|
|
|
|
this.$modal.showToast('添加失败')
|
|
|
|
this.loading = false
|
|
|
|
}
|
|
|
|
}).catch(() => {
|
|
|
|
this.$modal.closeLoading()
|
|
|
|
this.loading = false
|
|
|
|
})
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.$modal.confirm('是否添加检修工单').then(() => {
|
|
|
|
this.$modal.loading('加载中')
|
|
|
|
this.loading = true
|
|
|
|
overhaulOrderApi.overhaulOrderCreate(data).then((res) => {
|
|
|
|
this.$modal.closeLoading()
|
|
|
|
if (res.data) {
|
|
|
|
this.$modal.showToast('添加成功')
|
|
|
|
setTimeout(() => {
|
|
|
|
this.$tab.navigateBack()
|
|
|
|
this.loading = false
|
|
|
|
}, 1500)
|
|
|
|
} else {
|
|
|
|
this.$modal.showToast('添加失败')
|
|
|
|
this.loading = false
|
|
|
|
}
|
|
|
|
}).catch(() => {
|
|
|
|
this.$modal.closeLoading()
|
|
|
|
this.loading = false
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
// 重置
|
|
|
|
reset() {
|
|
|
|
if (this.form.id) {
|
|
|
|
this.form.classes = '';
|
|
|
|
this.form.faultType = ''
|
|
|
|
} else {
|
|
|
|
this.form = {}
|
|
|
|
this.isDisabled = false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
//
|
|
|
|
selectFormat(val, array) {
|
|
|
|
if(array.length>0){
|
|
|
|
let str = array.filter(item => item.value == val)[0].label
|
|
|
|
return str
|
|
|
|
}else{
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
// 单列模式
|
|
|
|
openSingleColumn(field, val, list) {
|
|
|
|
if (field == 'maintenanceNumber' && this.form.id) return;
|
|
|
|
if (field == 'deviceNumber' && this.isDisabled) return;
|
|
|
|
this.singleColumnList = list
|
|
|
|
this.field = field
|
|
|
|
if (val) {
|
|
|
|
this.singleColumnDefaultValue = [list.findIndex(item => item.value == val)]
|
|
|
|
} else {
|
|
|
|
this.singleColumnDefaultValue = []
|
|
|
|
}
|
|
|
|
this.singleColumnShow = true
|
|
|
|
},
|
|
|
|
// 单列模式点击确定之后
|
|
|
|
chooseSingleColumn(e) {
|
|
|
|
this.form[this.field] = e[0].value
|
|
|
|
if (this.field == 'maintenanceNumber') {
|
|
|
|
this.choosesingleColumnItem = this.singleColumnList.filter(item => item.number == e[0].value)
|
|
|
|
this.form.deviceName = this.choosesingleColumnItem[0].name
|
|
|
|
this.form.deviceNumber = this.choosesingleColumnItem[0].deviceNumber
|
|
|
|
this.form.factoryAreaName = this.choosesingleColumnItem[0].factoryAreaName
|
|
|
|
this.form.factoryAreaNumber = this.choosesingleColumnItem[0].factoryAreaNumber
|
|
|
|
this.isDisabled = true
|
|
|
|
// this.form.deviceNumber = e[0].value
|
|
|
|
}
|
|
|
|
if (this.field == 'deviceNumber') {
|
|
|
|
this.choosesingleColumnItem = this.singleColumnList.filter(item => item.number == e[0].value)
|
|
|
|
this.form.deviceName = this.choosesingleColumnItem[0].name
|
|
|
|
this.form.factoryAreaName = this.choosesingleColumnItem[0].factoryAreaName
|
|
|
|
this.form.factoryAreaNumber = this.choosesingleColumnItem[0].factoryAreaNumber
|
|
|
|
}
|
|
|
|
this.singleColumnShow = false
|
|
|
|
this.$emit('singleColumn', this.field, this.form[this.field])
|
|
|
|
this.$forceUpdate()
|
|
|
|
},
|
|
|
|
// 获取维修工单
|
|
|
|
async getRepairOrderList() {
|
|
|
|
await repairOrderApi.repairOrderList({
|
|
|
|
type:this.type,
|
|
|
|
result:'TEMPORARILY'
|
|
|
|
}).then(res => {
|
|
|
|
res.data.map(item => {
|
|
|
|
item.value = item.number
|
|
|
|
item.label = item.describes
|
|
|
|
})
|
|
|
|
this.repairOrderList = res.data
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
// 获取设备/模具列表
|
|
|
|
async getDeviceList() {
|
|
|
|
if(this.type == 'DEVICE'){
|
|
|
|
await deviceApi.deviceList().then(res => {
|
|
|
|
res.data.map(item => {
|
|
|
|
item.value = item.number
|
|
|
|
item.label = item.name
|
|
|
|
})
|
|
|
|
this.deviceList = res.data
|
|
|
|
})
|
|
|
|
}else if(this.type == 'MOLD'){
|
|
|
|
await moldApi.moldList().then(res => {
|
|
|
|
res.data.map(item => {
|
|
|
|
item.value = item.number
|
|
|
|
item.label = item.name
|
|
|
|
})
|
|
|
|
this.deviceList = res.data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
async onLoad(option) {
|
|
|
|
if (option.type) this.type = option.type;
|
|
|
|
if (option.data) {
|
|
|
|
let data = JSON.parse(decodeURIComponent(option.data))
|
|
|
|
this.form = {
|
|
|
|
id: data.id,
|
|
|
|
describes: data.describes,
|
|
|
|
maintenanceNumber: data.maintenanceNumber,
|
|
|
|
deviceName: data.name,
|
|
|
|
deviceNumber: data.deviceNumber,
|
|
|
|
factoryAreaName: data.factoryAreaName,
|
|
|
|
faultType: data.faultType,
|
|
|
|
}
|
|
|
|
this.isDisabled = this.form.maintenanceNumber ? true:false
|
|
|
|
};
|
|
|
|
await this.getRepairOrderList()
|
|
|
|
this.getDeviceList()
|
|
|
|
this.faultType = await dictApi.getDict('fault_type')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.add-form-container {
|
|
|
|
min-height: calc(100vh - 140rpx);
|
|
|
|
background: white;
|
|
|
|
padding: 0px 0rpx 140rpx;
|
|
|
|
}
|
|
|
|
.u-form-item{
|
|
|
|
padding: 20rpx 30rpx;
|
|
|
|
}
|
|
|
|
.disabled{
|
|
|
|
background: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
padding-bottom: 20rpx;
|
|
|
|
|
|
|
|
.item {
|
|
|
|
margin-top: 20rpx;
|
|
|
|
background: white;
|
|
|
|
padding: 30rpx;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
image {
|
|
|
|
width: 160rpx;
|
|
|
|
height: 160rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dec1 {
|
|
|
|
font-size: 28rpx;
|
|
|
|
margin-top: 16rpx;
|
|
|
|
color: #acacac;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dec2 {
|
|
|
|
font-size: 28rpx;
|
|
|
|
margin-top: 6rpx;
|
|
|
|
color: #acacac;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btns {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sure {
|
|
|
|
background: #409eff;
|
|
|
|
color: white;
|
|
|
|
border-radius: 0px;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
border: 1px solid #409eff;
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reset {
|
|
|
|
background: #F5F5F5;
|
|
|
|
border-radius: 0px;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-button {
|
|
|
|
background: #409eff;
|
|
|
|
color: white;
|
|
|
|
padding: 0rpx 30rpx;
|
|
|
|
border-radius: 16rpx;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 28rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 72rpx;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.input {
|
|
|
|
flex: 1;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.placeholder {
|
|
|
|
flex: 1;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: rgb(192, 196, 204);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|