|
@@ -85,7 +85,7 @@
|
|
|
</ws-info-table>
|
|
|
<ws-info-table class="el-table">
|
|
|
<div class="start-address" style="width: 36%">
|
|
|
- <el-radio-group
|
|
|
+ <el-radio-group
|
|
|
@change="warehouseTypechange"
|
|
|
v-model="deptBudgetList.warehouseType"
|
|
|
>
|
|
@@ -106,6 +106,7 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
+
|
|
|
<el-form-item label="始发地" span="1" class="start-address">
|
|
|
<el-cascader
|
|
|
:options="options_"
|
|
@@ -177,6 +178,7 @@
|
|
|
placeholder="请输入终到地详细地址"
|
|
|
maxlength="20"
|
|
|
size="small"
|
|
|
+ @change="endDetailedAddressChange"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
<div class="check-box">
|
|
@@ -191,7 +193,7 @@
|
|
|
|
|
|
<div
|
|
|
style="width: 100%"
|
|
|
- class="position"
|
|
|
+ class="position"
|
|
|
v-for="(item, index) in deptBudgetList.tranProcessInfoList"
|
|
|
:key="index"
|
|
|
>
|
|
@@ -199,7 +201,8 @@
|
|
|
<span style="vertical-align: top"
|
|
|
>运输阶段{{ index + 1 }} {{ item.processNo }}</span
|
|
|
>
|
|
|
- <img
|
|
|
+ <!-- 暂时取消添加运输阶段 -->
|
|
|
+ <!-- <img
|
|
|
width="22"
|
|
|
height="22"
|
|
|
class="add"
|
|
@@ -215,7 +218,7 @@
|
|
|
v-if="item.carNum==0||!item.carNum"
|
|
|
src="../../../public/img/del.png"
|
|
|
alt=""
|
|
|
- />
|
|
|
+ /> -->
|
|
|
<el-checkbox
|
|
|
@change="(val) => {engflagchange(val, index)}"
|
|
|
class="endflag"
|
|
@@ -525,6 +528,9 @@ export default {
|
|
|
'endDetailedAddress',
|
|
|
this.warehouseList1[i].detailedAddress
|
|
|
)
|
|
|
+ //终到地 终到地详细地址 默认第一运输阶段的收货地区(需求)
|
|
|
+ this.handleChange1(tmp)
|
|
|
+ this.endDetailedAddressChange()
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -834,6 +840,16 @@ export default {
|
|
|
this.deptBudgetList.endPrivate = CodeToText[value[0]]
|
|
|
this.deptBudgetList.endCity = CodeToText[value[1]]
|
|
|
this.deptBudgetList.endArea = CodeToText[value[2]]
|
|
|
+ //终到地 默认第一运输阶段的收货地区(需求)
|
|
|
+ this.deptBudgetList.tranProcessInfoList[0].selectedOptions1 = value
|
|
|
+ this.deptBudgetList.tranProcessInfoList[0].receivePrivate = CodeToText[value[0]]
|
|
|
+ this.deptBudgetList.tranProcessInfoList[0].receiveCity = CodeToText[value[1]]
|
|
|
+ this.deptBudgetList.tranProcessInfoList[0].receiveArea = CodeToText[value[2]]
|
|
|
+ },
|
|
|
+ // 终到地详细地址改变事件
|
|
|
+ endDetailedAddressChange(){
|
|
|
+ //终到地详细地址 默认第一运输阶段的收货地详细地址(需求)
|
|
|
+ this.deptBudgetList.tranProcessInfoList[0].receiveDetailedAddress = this.deptBudgetList.endDetailedAddress
|
|
|
},
|
|
|
handleChange3(value, index) {
|
|
|
this.deptBudgetList.tranProcessInfoList[index].sendPrivate =
|
|
@@ -1152,7 +1168,7 @@ export default {
|
|
|
width: 25%;
|
|
|
}
|
|
|
.typeselect {
|
|
|
- width: 42%;
|
|
|
+ width: 30%;
|
|
|
margin-left: 32px;
|
|
|
}
|
|
|
/deep/.position .ws-info-table .el-form-item .el-form-item__label,
|