| | |
| | | <wd-card> |
| | | <wd-cell-group :border="true"> |
| | | <wd-cell title="单丝编号" :value="data.monofilamentNumber" /> |
| | | <wd-cell title="长度" :value="data.amount + ' (M)'" /> |
| | | <wd-cell title="理论长度" :value="data.amount + ' (M)'" /> |
| | | <wd-cell title="生产长度" :value="data.actuallyLength + ' (M)'" /> |
| | | <wd-cell title="重量" :value="data.actuallyWeight + ' (kg)'" /> |
| | | </wd-cell-group> |
| | |
| | | |
| | | nodeList.value.forEach((node) => { |
| | | node.strandedWireDish.forEach((item: any) => { |
| | | item.twistId = node.twistId; |
| | | item.saleTwistId = node.twistId; |
| | | }); |
| | | if (node.strandedWireDish && Array.isArray(node.strandedWireDish)) { |
| | | const layerNewData = node.strandedWireDish.filter( |