Browse Source

修改运单详情bug

dev-xx
qb 11 months ago
parent
commit
4c1299e254
  1. 4
      src/views/distribution/inventory/BookingNote.vue

4
src/views/distribution/inventory/BookingNote.vue

@ -1545,7 +1545,7 @@ const handleFindInfo = async type => {
for (let i = 0; i < _batchStatus.length; i++) {
const item = _batchStatus[i];
if (item.value === Number(value.trackType)) continue;
if (item.value !== Number(value.trackType)) continue;
value.trackTypeName = item.label;
break;
}
@ -1553,7 +1553,7 @@ const handleFindInfo = async type => {
for (let i = 0; i < _checkStatus.length; i++) {
const item = _checkStatus[i];
if (item.value === Number(value.checkStatus)) continue;
if (item.value !== Number(value.checkStatus)) continue;
value.checkStatusName = item.label;
break;
}

Loading…
Cancel
Save