<!--
|
Description: 设备特殊字符管理页面 Form
|
Author: 作者 liuyh
|
Date: 2025-01-15
|
-->
|
<template>
|
<a-spin :spinning="confirmLoading">
|
<j-form-container :disabled="formDisabled">
|
<a-form :form="form" slot="detail">
|
<a-row>
|
<a-col :span="24">
|
<a-form-item label="设备编号" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-input v-decorator="['deviceNo', validatorRules.deviceNo]" placeholder="请输入设备编号"></a-input>
|
</a-form-item>
|
</a-col>
|
<a-col :span="24">
|
<a-form-item label="所属车间" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<j-select-equipment-production v-model="model.departId" :multi="false" @back="backProductionInfo" :backProduction="true" :treeProductOpera="true"></j-select-equipment-production>
|
</a-form-item>
|
</a-col>
|
<a-col :span="24">
|
<a-form-item label="数控系统" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-input v-decorator="['controlSystem', validatorRules.controlSystem]" placeholder="请输入数控系统"></a-input>
|
</a-form-item>
|
</a-col>
|
<a-col :span="24">
|
<a-form-item label="特殊字符" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
<a-input v-decorator="['characters', validatorRules.characters]" placeholder="请输入特殊字符"></a-input>
|
</a-form-item>
|
</a-col>
|
<a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center">
|
<a-button @click="submitForm">提 交</a-button>
|
</a-col>
|
</a-row>
|
</a-form>
|
</j-form-container>
|
</a-spin>
|
</template>
|
|
<script>
|
|
import { httpAction, getAction } from '@/api/manage'
|
import pick from 'lodash.pick'
|
import JFormContainer from '@/components/jeecg/JFormContainer'
|
import JDictSelectTag from "@/components/dict/JDictSelectTag"
|
import JSelectProduction from '@comp/jeecgbiz/JSelectProduction.vue'
|
import JSelectEquipmentProduction from '@comp/jeecgbiz/JSelectEquipmentProduction.vue'
|
|
export default {
|
name: 'NcDeviceCharactersForm',
|
components: {
|
JSelectEquipmentProduction,
|
JSelectProduction,
|
JFormContainer,
|
JDictSelectTag,
|
},
|
props: {
|
//流程表单data
|
formData: {
|
type: Object,
|
default: ()=>{},
|
required: false
|
},
|
//表单模式:true流程表单 false普通表单
|
formBpm: {
|
type: Boolean,
|
default: false,
|
required: false
|
},
|
//表单禁用
|
disabled: {
|
type: Boolean,
|
default: false,
|
required: false
|
}
|
},
|
data () {
|
return {
|
form: this.$form.createForm(this),
|
model: {},
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 },
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 16 },
|
},
|
confirmLoading: false,
|
validatorRules: {
|
deviceNo: {
|
rules: [
|
{ required: true, message: '请输入设备编号!'},
|
]
|
},
|
departId: {
|
rules: [
|
{ required: true, message: '请选择所属车间!'},
|
]
|
},
|
controlSystem: {
|
rules: [
|
{ required: true, message: '请输入数控系统!'},
|
]
|
},
|
characters: {
|
rules: [
|
{ required: true, message: '请输入特殊字符!'},
|
]
|
},
|
},
|
url: {
|
add: "/nc/device/characters/add",
|
edit: "/nc/device/characters/edit",
|
// queryById: "/zhshj/wglltwh/query/by/id"
|
}
|
}
|
},
|
computed: {
|
formDisabled(){
|
if(this.formBpm===true){
|
if(this.formData.disabled===false){
|
return false
|
}
|
return true
|
}
|
return this.disabled
|
},
|
showFlowSubmitButton(){
|
if(this.formBpm===true){
|
if(this.formData.disabled===false){
|
return true
|
}
|
}
|
return false
|
}
|
},
|
created () {
|
//如果是流程中表单,则需要加载流程表单data
|
this.showFlowData();
|
},
|
methods: {
|
add () {
|
this.edit({});
|
},
|
backProductionInfo(info) {
|
console.log(info)
|
this.model.productionIds = this.model.selectedProduction;
|
this.nextProductionOptions = info.map((item,index,arr)=>{
|
let c = {label:item.text, value: item.value+""}
|
return c;
|
})
|
},
|
edit (record) {
|
this.form.resetFields();
|
this.model = Object.assign({}, record);
|
this.visible = true;
|
this.$nextTick(() => {
|
this.form.setFieldsValue(pick(this.model,'deviceNo','departId','controlSystem','characters'))
|
})
|
},
|
//渲染流程表单数据
|
showFlowData(){
|
if(this.formBpm === true){
|
let params = {id:this.formData.dataId};
|
getAction(this.url.queryById,params).then((res)=>{
|
if(res.success){
|
this.edit (res.result);
|
}
|
});
|
}
|
},
|
submitForm () {
|
const that = this;
|
// 触发表单验证
|
this.form.validateFields((err, values) => {
|
if (!err) {
|
that.confirmLoading = true;
|
let httpurl = '';
|
let method = '';
|
if(!this.model.id){
|
httpurl+=this.url.add;
|
method = 'post';
|
}else{
|
httpurl+=this.url.edit;
|
method = 'put';
|
}
|
let formData = Object.assign(this.model, values);
|
console.log("表单提交数据",formData)
|
httpAction(httpurl,formData,method).then((res)=>{
|
if(res.success){
|
that.$message.success(res.message);
|
that.$emit('ok');
|
}else{
|
that.$message.warning(res.message);
|
}
|
}).finally(() => {
|
that.confirmLoading = false;
|
})
|
}
|
|
})
|
},
|
popupCallback(row){
|
this.form.setFieldsValue(pick(row,'deviceNo','departId','controlSystem','characters'))
|
},
|
}
|
}
|
</script>
|