2025-04-18 14:58:41 +08:00
|
|
|
<template>
|
|
|
|
<a-spin :spinning="confirmLoading">
|
|
|
|
<j-form-container :disabled="formDisabled">
|
|
|
|
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
|
|
|
|
<a-row>
|
2025-04-24 11:20:19 +08:00
|
|
|
<a-col :span="12">
|
2025-04-18 14:58:41 +08:00
|
|
|
<a-form-model-item label="用车需求编号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="vdNo">
|
2025-04-24 11:20:19 +08:00
|
|
|
<!-- <a-input v-model="model.vdNo" placeholder="请输入用车需求编号" ></a-input> -->
|
2025-04-24 15:35:28 +08:00
|
|
|
<j-search-select-tag type="list" v-model="model.vdNo" dict="tms_vehicle_demand,vd_no,vd_no" showSearch placeholder="请选择用车需求编号" />
|
2025-04-18 14:58:41 +08:00
|
|
|
</a-form-model-item>
|
|
|
|
</a-col>
|
2025-04-24 11:20:19 +08:00
|
|
|
<a-col :span="12">
|
2025-04-18 14:58:41 +08:00
|
|
|
<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>
|
2025-04-24 11:20:19 +08:00
|
|
|
<a-col :span="12">
|
2025-04-18 14:58:41 +08:00
|
|
|
<a-form-model-item label="车型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="carType">
|
2025-04-24 11:20:19 +08:00
|
|
|
<!-- <j-dict-select-tag type="list" v-model="model.carType" dictCode="tms_vehicle_pallet,car_type,car_type" placeholder="请选择车型" /> -->
|
|
|
|
<a-auto-complete v-model="model.carType" placeholder="请输入车型" @select="carTypeSelect" @change="carTypeChange" :dataSource="carTypeList"></a-auto-complete>
|
2025-04-18 14:58:41 +08:00
|
|
|
</a-form-model-item>
|
|
|
|
</a-col>
|
2025-04-24 11:20:19 +08:00
|
|
|
<a-col :span="12">
|
2025-04-18 14:58:41 +08:00
|
|
|
<a-form-model-item label="车长" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="carLong">
|
2025-04-24 11:20:19 +08:00
|
|
|
<a-input-number v-model="model.carLong" placeholder="请输入车长" style="width: 100%" disabled/>
|
2025-04-18 14:58:41 +08:00
|
|
|
</a-form-model-item>
|
|
|
|
</a-col>
|
2025-04-24 11:20:19 +08:00
|
|
|
<!-- <a-col :span="12">
|
2025-04-18 14:58:41 +08:00
|
|
|
<a-form-model-item label="送货区域" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="deliveryArea">
|
|
|
|
<a-input v-model="model.deliveryArea" placeholder="请输入送货区域" ></a-input>
|
|
|
|
</a-form-model-item>
|
2025-04-24 11:20:19 +08:00
|
|
|
</a-col> -->
|
|
|
|
<a-col :span="12">
|
|
|
|
<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-auto-complete v-model="model.pickUpHub" placeholder="请输入取货仓库" @select="pickUpHubSelect" @change="pickUpHubChange" :dataSource="pickUpHubList"></a-auto-complete>
|
2025-04-18 14:58:41 +08:00
|
|
|
</a-form-model-item>
|
|
|
|
</a-col>
|
2025-04-24 11:20:19 +08:00
|
|
|
<a-col :span="12">
|
|
|
|
<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="请选择送货地点" disabled/>
|
2025-04-18 14:58:41 +08:00
|
|
|
</a-form-model-item>
|
|
|
|
</a-col>
|
2025-04-24 11:20:19 +08:00
|
|
|
<a-col :span="12">
|
2025-04-18 14:58:41 +08:00
|
|
|
<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 {
|
2025-04-24 11:20:19 +08:00
|
|
|
carTypeLongList:[],
|
|
|
|
carTypeList:[],
|
|
|
|
cityList:[],
|
|
|
|
pickUpHubList:[],
|
2025-04-18 14:58:41 +08:00
|
|
|
model:{
|
|
|
|
},
|
|
|
|
labelCol: {
|
|
|
|
xs: { span: 24 },
|
2025-04-24 11:20:19 +08:00
|
|
|
sm: { span: 6 },
|
2025-04-18 14:58:41 +08:00
|
|
|
},
|
|
|
|
wrapperCol: {
|
|
|
|
xs: { span: 24 },
|
|
|
|
sm: { span: 16 },
|
|
|
|
},
|
|
|
|
confirmLoading: false,
|
|
|
|
validatorRules: {
|
2025-04-24 11:20:19 +08:00
|
|
|
vdNo :[{required: true, message: '请选择用车需求编号!'}],
|
|
|
|
shipType :[{required: true, message: '请选择发货类型!'}],
|
|
|
|
carType :[{required: true, message: '请选择车型!'}],
|
|
|
|
carLong :[{required: true, message: '请选择车长!'}],
|
|
|
|
pickUpHub :[{required: true, message: '请选择取货仓库!'}],
|
|
|
|
deliveryAddress :[{required: true, message: '请选择送货地点!'}],
|
2025-04-18 14:58:41 +08:00
|
|
|
},
|
|
|
|
url: {
|
|
|
|
add: "/vehicledemandcount/vehicleDemandCount/add",
|
|
|
|
edit: "/vehicledemandcount/vehicleDemandCount/edit",
|
2025-04-24 11:20:19 +08:00
|
|
|
queryById: "/vehicledemandcount/vehicleDemandCount/queryById",
|
|
|
|
getCarTypeLong: "/vehiclepallet/vehiclePallet/getCarTypeLong",
|
|
|
|
getCity: "/logisticsroute/logisticsRoute/getCity",
|
2025-04-18 14:58:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
formDisabled(){
|
|
|
|
return this.disabled
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created () {
|
|
|
|
//备份model原始值
|
|
|
|
this.modelDefault = JSON.parse(JSON.stringify(this.model));
|
2025-04-24 11:20:19 +08:00
|
|
|
this.getCarTypeLong();
|
|
|
|
this.getCity();
|
2025-04-18 14:58:41 +08:00
|
|
|
},
|
|
|
|
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;
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
},
|
2025-04-24 11:20:19 +08:00
|
|
|
getCarTypeLong(){
|
|
|
|
getAction(this.url.getCarTypeLong).then(res => {
|
|
|
|
if (res.success) {
|
|
|
|
this.carTypeLongList = res.result;
|
|
|
|
this.carTypeList = res.result;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
carTypeSelect(){
|
|
|
|
let carType = this.carTypeList.filter(x=>x.includes(this.model.carType))[0].split('&-')[0];
|
|
|
|
let carLong = this.carTypeList.filter(x=>x.includes(this.model.carType))[0].split('&-')[1];
|
|
|
|
this.model.carType = carType;
|
|
|
|
this.model.carLong = carLong;
|
|
|
|
},
|
|
|
|
carTypeChange(val){
|
|
|
|
this.carTypeList = this.carTypeLongList.filter(x => x.includes(val));
|
|
|
|
},
|
|
|
|
|
|
|
|
getCity(){
|
|
|
|
getAction(this.url.getCity).then(res => {
|
|
|
|
if (res.success) {
|
|
|
|
this.cityList = res.result;
|
|
|
|
this.pickUpHubList = res.result;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
pickUpHubSelect(){
|
|
|
|
let pickUpHub = this.pickUpHubList.filter(x=>x.includes(this.model.pickUpHub))[0].split('&-')[0]
|
|
|
|
let deliveryAddress = this.pickUpHubList.filter(x=>x.includes(this.model.pickUpHub))[0].split('&-')[1]
|
|
|
|
this.model.pickUpHub = pickUpHub
|
|
|
|
this.model.deliveryAddress = deliveryAddress
|
|
|
|
},
|
|
|
|
pickUpHubChange(val){
|
|
|
|
this.pickUpHubList = this.cityList.filter(x => x.includes(val));
|
|
|
|
},
|
2025-04-18 14:58:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|