Browse Source

修复到车和三方线路搜索

dev
qb 2 months ago
parent
commit
dbe22f4863
  1. 4
      src/views/distribution/artery/TripartiteTransfer.vue
  2. 5
      src/views/distribution/artery/VehicleArrivalManagement.vue

4
src/views/distribution/artery/TripartiteTransfer.vue

@ -983,6 +983,10 @@ const inputsc = (index, row) => {
details.query.loadCarsNo = index;
if (!index && index !== 0) delete details.query[row.prop];
}
if (row.prop === 'carsLineName') {
details.query.warehouseName = index;
if (!index && index !== 0) delete details.query[row.prop];
}
onLoad();
};

5
src/views/distribution/artery/VehicleArrivalManagement.vue

@ -890,6 +890,11 @@ const inputsc = (index, row) => {
details.query.loadCarsNo = index;
if (!index && index !== 0) delete details.query[row.prop];
}
if (row.prop === 'carsLineName') {
details.query.warehouseName = index;
if (!index && index !== 0) delete details.query[row.prop];
}
onLoad();
};

Loading…
Cancel
Save