Browse Source

修复干线bug

dev-xx
qb 7 months ago
parent
commit
2615f1adfc
  1. 5
      src/views/distribution/artery/VehicleStowage.vue

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

@ -190,7 +190,7 @@
slotProps.scope.row.loadStatus === '80'
? 'red'
: (
details.nodeStatus.find(val => val.value === Number(item.nodeStatus)) || {
loadStatus.find(val => val.value === Number(item.nodeStatus)) || {
className: 'gray',
}
).className + ' mr0'
@ -850,6 +850,9 @@ const searchHide = () => {
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (!index && index !== 0) delete details.query[row.prop];
if (row.prop === 'waybillNo') {
}
initOnload();
};

Loading…
Cancel
Save