|
@@ -259,11 +259,14 @@ const getTrackNodes = async () => {
|
|
|
const sameNode = trackNodes.find(node => node.nodeCode === nodeCode)
|
|
|
if (sameNode) {
|
|
|
Object.assign(sameNode, {
|
|
|
- value: `${execPosition ?? ' '}/${String(
|
|
|
- ConsignmentItemPackagingQuantityQuantity ?? ' '
|
|
|
- )}\n${!!Number(execResult) ? '通过' : '未通过'}/${
|
|
|
- String(execTime ?? '').split('T')[1] ?? ' '
|
|
|
- }`,
|
|
|
+ value:
|
|
|
+ execResult ?? '' !== ''
|
|
|
+ ? `${execPosition ?? ' '}/${String(
|
|
|
+ ConsignmentItemPackagingQuantityQuantity ?? ' '
|
|
|
+ )}\n${!!Number(execResult) ? '通过' : '未通过'}/${
|
|
|
+ String(execTime ?? '').split('T')[1] ?? ' '
|
|
|
+ }`
|
|
|
+ : '',
|
|
|
})
|
|
|
if (!Number(execResult)) {
|
|
|
Object.assign(sameNode, {
|
|
@@ -293,7 +296,7 @@ const getTrackNodes = async () => {
|
|
|
}
|
|
|
if (!resultNode.value) {
|
|
|
Object.assign(resultNode, {
|
|
|
- value: ' / \n未通过/ ',
|
|
|
+ value: '',
|
|
|
label: {
|
|
|
backgroundColor: inActiveColor,
|
|
|
},
|