139 lines
4.9 KiB
Java
139 lines
4.9 KiB
Java
![]() |
<template>
|
||
|
<a-spin :spinning="confirmLoading">
|
||
|
<j-form-container :disabled="formDisabled">
|
||
|
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
|
||
|
<a-row>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="用车需求编号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="vdNo">
|
||
|
<a-input v-model="model.vdNo" placeholder="请输入用车需求编号" ></a-input>
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="发货类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="shipType">
|
||
|
<j-dict-select-tag type="list" v-model="model.shipType" dictCode="ship_type" placeholder="请选择发货类型" />
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="车型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="carType">
|
||
|
<j-dict-select-tag type="list" v-model="model.carType" dictCode="tms_vehicle_pallet,car_type,car_type" placeholder="请选择车型" />
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="车长" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="carLong">
|
||
|
<a-input-number v-model="model.carLong" placeholder="请输入车长" style="width: 100%" />
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="送货区域" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="deliveryArea">
|
||
|
<a-input v-model="model.deliveryArea" placeholder="请输入送货区域" ></a-input>
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="送货地点" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="deliveryAddress">
|
||
|
<j-dict-select-tag type="list" v-model="model.deliveryAddress" dictCode="delivery_address" placeholder="请选择送货地点" />
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="取货仓库" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="pickUpHub">
|
||
|
<j-dict-select-tag type="list" v-model="model.pickUpHub" dictCode="pick_up_hub" placeholder="请选择取货仓库" />
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
<a-col :span="24">
|
||
|
<a-form-model-item label="审核结果" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="auditResult">
|
||
|
<j-dict-select-tag type="list" v-model="model.auditResult" dictCode="audit_result" placeholder="请选择审核结果" />
|
||
|
</a-form-model-item>
|
||
|
</a-col>
|
||
|
</a-row>
|
||
|
</a-form-model>
|
||
|
</j-form-container>
|
||
|
</a-spin>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
import { httpAction, getAction } from '@/api/manage'
|
||
|
import { validateDuplicateValue } from '@/utils/util'
|
||
|
|
||
|
export default {
|
||
|
name: 'VehicleDemandCountForm',
|
||
|
components: {
|
||
|
},
|
||
|
props: {
|
||
|
//表单禁用
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
default: false,
|
||
|
required: false
|
||
|
}
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
model:{
|
||
|
},
|
||
|
labelCol: {
|
||
|
xs: { span: 24 },
|
||
|
sm: { span: 5 },
|
||
|
},
|
||
|
wrapperCol: {
|
||
|
xs: { span: 24 },
|
||
|
sm: { span: 16 },
|
||
|
},
|
||
|
confirmLoading: false,
|
||
|
validatorRules: {
|
||
|
},
|
||
|
url: {
|
||
|
add: "/vehicledemandcount/vehicleDemandCount/add",
|
||
|
edit: "/vehicledemandcount/vehicleDemandCount/edit",
|
||
|
queryById: "/vehicledemandcount/vehicleDemandCount/queryById"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
formDisabled(){
|
||
|
return this.disabled
|
||
|
},
|
||
|
},
|
||
|
created () {
|
||
|
//备份model原始值
|
||
|
this.modelDefault = JSON.parse(JSON.stringify(this.model));
|
||
|
},
|
||
|
methods: {
|
||
|
add () {
|
||
|
this.edit(this.modelDefault);
|
||
|
},
|
||
|
edit (record) {
|
||
|
this.model = Object.assign({}, record);
|
||
|
this.visible = true;
|
||
|
},
|
||
|
submitForm () {
|
||
|
const that = this;
|
||
|
// 触发表单验证
|
||
|
this.$refs.form.validate(valid => {
|
||
|
if (valid) {
|
||
|
that.confirmLoading = true;
|
||
|
let httpurl = '';
|
||
|
let method = '';
|
||
|
if(!this.model.id){
|
||
|
httpurl+=this.url.add;
|
||
|
method = 'post';
|
||
|
}else{
|
||
|
httpurl+=this.url.edit;
|
||
|
method = 'put';
|
||
|
}
|
||
|
httpAction(httpurl,this.model,method).then((res)=>{
|
||
|
if(res.success){
|
||
|
that.$message.success(res.message);
|
||
|
that.$emit('ok');
|
||
|
}else{
|
||
|
that.$message.warning(res.message);
|
||
|
}
|
||
|
}).finally(() => {
|
||
|
that.confirmLoading = false;
|
||
|
})
|
||
|
}
|
||
|
|
||
|
})
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|