<template>
|
<a-modal
|
title="新增设备刀具信息"
|
:width="900"
|
:visible="visible"
|
:confirmLoading="confirmLoading"
|
@ok="handleSubmit"
|
@cancel="handleCancel"
|
>
|
<a-spin :spinning="confirmLoading">
|
<a-form :form="form">
|
<a-form-item label="设备名称" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
|
<a-select
|
show-search
|
option-filter-prop="children"
|
:filter-option="filterOption"
|
:allowClear="true"
|
style="width: 100%"
|
v-decorator="['equipmentID', { rules: [{ required: true, message: '设备名称不能为空' }] }]"
|
placeholder="请选择设备名称"
|
>
|
<a-select-option v-for="(item, index) in equitypeData" :key="index" :value="item.equipmentId">{{
|
item.equipmentName
|
}}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-form>
|
</a-spin>
|
</a-modal>
|
</template>
|
|
<script>
|
// 获取设备下拉框数据
|
import { getEquipmentName } from '@/api/modular/main/EquipmentBaseInfoManage'
|
import { addKnifetoolequipmentmonitor } from '@/api/modular/main/KnifeToolDataMonitorManage'
|
export default {
|
data() {
|
return {
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 15 }
|
},
|
visible: false,
|
confirmLoading: false,
|
form: this.$form.createForm(this),
|
equitypeData: []
|
}
|
},
|
created() {
|
this.getEquipmentName()
|
},
|
methods: {
|
// 初始化方法
|
show(record) {
|
this.visible = true
|
this.$nextTick(() => {})
|
},
|
/**
|
* 提交表单
|
*/
|
handleSubmit() {
|
const {
|
form: { validateFields }
|
} = this
|
this.confirmLoading = true
|
validateFields((errors, values) => {
|
if (!errors) {
|
for (const key in values) {
|
if (typeof values[key] === 'object') {
|
values[key] = JSON.stringify(values[key])
|
}
|
}
|
|
const result = this.equitypeData.filter(item => item.equipmentId == values.equipmentID)
|
if (result.length > 0) values.workingProcedure = result[0].workingProcedure
|
addKnifetoolequipmentmonitor(values).then((res) => {
|
if (res.success) {
|
this.$message.success('新增成功')
|
this.confirmLoading = false
|
this.$emit('ok', values)
|
this.handleCancel()
|
} else {
|
this.$message.error('新增失败:' + JSON.stringify(res.message))
|
}
|
}).finally((res) => {
|
this.confirmLoading = false
|
})
|
} else {
|
this.confirmLoading = false
|
}
|
})
|
},
|
handleCancel() {
|
this.form.resetFields()
|
this.visible = false
|
},
|
// 设备查询框筛选
|
filterOption(input, option) {
|
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
},
|
async getEquipmentName() {
|
try {
|
const { data } = await getEquipmentName()
|
this.equitypeData = data
|
} catch (error) {
|
console.log(error)
|
}
|
}
|
}
|
}
|
</script>
|