1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
| <template>
| <el-card style="margin-left: 10px; margin-top: 10px; margin-right: 10px;" v-loading="loading">
| <div style="display: flex;">
| <div style="margin-left: 400px; font-size: 20px;">工程号:P20240305001 </div>
| <div style="margin-left: 150px; font-size: 20px;">版图编号:1</div>
| </div>
| <svg width="100%" height="650" xmlns="http://www.w3.org/2000/svg">
| <g v-for="(rack, index) in racks" :key="index">
| <rect
| :x="rack.x"
| :y="rack.y"
| :width="rack.width"
| :height="rack.height"
| :fill="rack.fillColor"
| :data-index="index"
| class="rack-rect"
| @click="showRectInfo(rack)"
| />
| <g v-for="(item, itemIndex) in rack.items" :key="itemIndex">
| <rect
| :x="calculateItemXPosition(rack, item, itemIndex)"
| :y="calculateItemYPosition(rack, item, itemIndex)"
| :width="item.width"
| :height="item.height"
| :fill="item.fillColor"
| />
| </g>
| </g>
| </svg>
| </el-card>
| </template>
|
| <script>
| import Swal from 'sweetalert2'
| export default {
| data() {
| return {
| loading: false,
| racks: [
| {
| x: 70, y: 126, width: 600, height: 240, fillColor: '#79bbff',
| items: [
| { position: 'top-left', width: 40, height: 30, fillColor: '#911005', content: 'NG123456' },
| { position: 'bottom-right', width: 40, height: 30, fillColor: 'yellow', content: 'NG1234567' }
| ]
| },
| {
| x: 675, y: 126, width: 600, height: 240, fillColor: '#79bbff',
| items: [
| { position: 'top-left', width: 40, height: 30, fillColor: '#911005', content: 'NG123456' },
| { position: 'top-right', width: 40, height: 30, fillColor: 'yellow', content: 'NG1234567' }
| ]
| },
| {
| x: 70, y: 370, width: 1100, height: 260, fillColor: '#79bbff',
| items: [
| { position: 'top-left', width: 40, height: 30, fillColor: '#911005', content: 'NG123456' },
| { position: 'top-right', width: 40, height: 30, fillColor: 'yellow', content: 'NG1234567' }
| ]
| },
| {
| x: 1175, y: 370, width: 200, height: 300,fillColor: '#79bbff',
| items: [
| { position: 'top-left', width: 40, height: 30, fillColor: '#911005', content: 'NG123456' },
| { position: 'top-right', width: 40, height: 30, fillColor: 'yellow', content: 'NG1234567' }
| ]
| }
|
| // Add more racks and items here as needed
| ],
| };
| },
|
| methods: {
| calculateItemXPosition(rack, item, index) {
| if (item.position === 'top-right' || item.position === 'bottom-right') {
| return Math.min(rack.x + rack.width - item.width, rack.x + rack.width);
| } else {
| return rack.x;
| }
| },
|
| calculateItemYPosition(rack, item, index) {
| if (item.position === 'bottom-left' || item.position === 'bottom-right') {
| return Math.min(rack.y + rack.height - item.height, rack.y + rack.height);
| } else {
| return rack.y;
| }
| },
|
| showCustomAlert(content) {
| Swal.fire({
| title: 'Rack Information',
| text: content,
| icon: 'info',
| });
| },
|
| showRectInfo(rectInfo) {
| const contents = rectInfo.items.map(item => item.content).join(', ');
| this.$nextTick(() => {
| this.showCustomAlert(contents);
| });
| },
| }
| };
| </script>
|
| <style scoped>
| .glass-rack {
| width: 100%;
| height: 80vh;
| }
| .rack-rect:hover {
| cursor: pointer;
| }
| .custom-popover-class {
| background-color: lightgrey;
| color: black;
| border: 1px solid black;
| }
| </style>
|
|