|
@@ -558,7 +558,9 @@ export default {
|
|
|
this.materialId = selection.materialId;
|
|
|
},
|
|
|
selectionChange1(radio){
|
|
|
- this.capacityTypeName = radio.capacityTypeName
|
|
|
+ console.log(radio)
|
|
|
+ this.capacityTypeName = radio.capacityTypeName,
|
|
|
+ this.capacityTypeId = radio.capacityTypeId
|
|
|
},
|
|
|
currentRadioChange2(selection) {
|
|
|
console.log(selection);
|
|
@@ -579,6 +581,7 @@ export default {
|
|
|
},
|
|
|
// 新增
|
|
|
makeSure() {
|
|
|
+ console.log(this.form.isMineral)
|
|
|
this.disabled = true
|
|
|
if(this.shipperId == null){
|
|
|
this.$message.error("请选择用车单位")
|
|
@@ -649,6 +652,9 @@ export default {
|
|
|
if(this.form.capacityType==undefined){
|
|
|
this.form.capacityType=""
|
|
|
}
|
|
|
+ if(this.form.typeRemarks==undefined){
|
|
|
+ this.form.typeRemarks=""
|
|
|
+ }
|
|
|
let requiremnet = {
|
|
|
requirementEstimatedDuration: this.form.requirementEstimatedDuration,
|
|
|
requirementOverlimit: this.form.requirementOverlimit + this.form.remark + '米',
|
|
@@ -661,6 +667,8 @@ export default {
|
|
|
rangeId:this.form.transRange,
|
|
|
// 用车截日期
|
|
|
DueTime:DueTime,
|
|
|
+ // 用车类型Id
|
|
|
+ capacityTypeId:this.capacityTypeId,
|
|
|
mapList:this.tableData,
|
|
|
orgCode:getCookie("orgCode"),
|
|
|
remark:this.form.Tel + this.capacityTypeName+this.form.typeRemarks
|