| | |
| | | const handleMessage = (data) => { |
| | | // 更新 tableData 的数据 |
| | | if(data.overGlass!=null){ |
| | | adjustedRects.value = data.overGlass[0].map(rect => ({ |
| | | ...rect, // 复制原始对象的其他属性 |
| | | xcoordinate: rect.xCoordinate * 0.4, // 将x值除以3 |
| | | ycoordinate: rect.yCoordinate * 0.4, |
| | | width: rect.width * 0.4, |
| | | height: rect.height * 0.4, |
| | | widtha: rect.width, |
| | | heighta: rect.height, |
| | | })); |
| | | } |
| | | adjustedRects.value = data.overGlass[0].map(rect => { |
| | | let adjustedWidth, adjustedHeight, adjustedWidtha, adjustedHeighta; |
| | | if (rect.angle === 90) { |
| | | adjustedWidth = rect.height * 0.3; |
| | | adjustedHeight = rect.width * 0.3; |
| | | adjustedWidtha = rect.height; |
| | | adjustedHeighta = rect.width; |
| | | } else { |
| | | adjustedWidth = rect.width * 0.3; |
| | | adjustedHeight = rect.height * 0.3; |
| | | adjustedWidtha = rect.width; |
| | | adjustedHeighta = rect.height; |
| | | } |
| | | return { |
| | | ...rect, // 复制原始对象的其他属性 |
| | | xcoordinate: rect.xCoordinate * 0.3, |
| | | ycoordinate: rect.yCoordinate * 0.3, |
| | | width: adjustedWidth, |
| | | height: adjustedHeight, |
| | | widtha: adjustedWidtha, |
| | | heighta: adjustedHeighta, |
| | | }; |
| | | }); |
| | | } |
| | | }; |
| | | onMounted(() => { |
| | | // fetchFlowCardId(); |