Browse Source

修复市配司机选择问题

dev-xx
qb 10 months ago
parent
commit
b1b02fa51d
  1. 7
      src/views/distribution/turndelivery/deliveryMarket.vue

7
src/views/distribution/turndelivery/deliveryMarket.vue

@ -1275,7 +1275,7 @@ export default {
},
/** 返回上一页 */
back() {
this.$router.back();
this.$router.push('/distribution/reservation/reservation');
this.$store.commit('DEL_TAG_CURRENT');
},
// ()
@ -1553,6 +1553,8 @@ export default {
a.push(item);
//
if (i === 0) this.driverForm.masterDriverName = item.name;
if (!this.driverForm.masterVehicleNub)
this.driverForm.masterVehicleNub = item.vehicleVOList[0].vehicleNub;
// , ,
if (i === params.length - 1) {
@ -1578,7 +1580,8 @@ export default {
);
// this.vehticleList.push(id);
this.vehicleIds.push(id);
this.vehticleList = [...new Set([...this.vehticleList, id])];
this.vehicleIds = [...new Set([...this.vehicleIds, id])];
}
}
}

Loading…
Cancel
Save