|
|
|
@ -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; |
|
|
|
|
} |
|
|
|
|