StationData.vue
5.4 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<template>
<div class="warehouse-table">
<!-- 固定表头 -->
<table class="data-table">
<thead>
<tr class="table-header">
<th v-for="(header, colIndex) in headers" :key="colIndex">
{{ header }}
</th>
</tr>
</thead>
</table>
<!-- 树形控件 -->
<el-tree
:data="treeData"
node-key="id"
:props="defaultProps"
:expand-on-click-node="false"
:default-expand-all="true"
>
<template #default="{ node, data }">
<div
v-if="data.type === 'group'"
class="group-header"
@click="toggleExpand(node)"
>
<span>{{ data.label }}</span>
</div>
<table v-else class="data-table">
<tbody>
<tr
:class="{
'active-row': data.isActive,
'hover-effect': !data.isActive,
}"
@mouseover="!data.isActive && handleRowHover(data.id)"
@mouseleave="!data.isActive && handleRowLeave(data.id)"
>
<td v-for="(cell, cellIndex) in data.cells" :key="cellIndex">
{{ cell }}
</td>
</tr>
</tbody>
</table>
</template>
</el-tree>
</div>
</template>
<script>
export default {
data() {
return {
headers: [
"站台编码",
"站台名",
"可出属性",
"自动状态",
"占位",
"条码",
"P-请求报文",
"P-请求装载",
"P-请求读码器",
"P-请求条码",
"P-请求重量",
"P-请求长度",
"P-请求宽度",
"P-请求高度",
"W-请求报文",
],
treeData: [
{
id: 1,
label: "2号巷道",
type: "group",
children: [
{
id: 2,
type: "station",
isActive: true,
cells: [
"P1001",
"接出...",
"可出",
"1",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
],
},
{
id: 3,
type: "station",
isActive: false,
cells: [
"P1007",
"接入...",
"不可出",
"1",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
],
},
],
},
{
id: 4,
label: "3号巷道",
type: "group",
children: [
{
id: 5,
type: "station",
isActive: false,
cells: [
"P2001",
"接出...",
"可出",
"1",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
],
},
{
id: 6,
type: "station",
isActive: false,
cells: [
"P2007",
"接入...",
"不可出",
"1",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
],
},
],
},
],
defaultProps: {
children: "children",
label: "label",
},
hoverRowIndex: -1,
};
},
methods: {
handleRowHover(index) {
this.hoverRowIndex = index;
},
handleRowLeave() {
this.hoverRowIndex = -1;
},
toggleExpand(node) {
node.expanded = !node.expanded;
},
},
};
</script>
<style scoped>
.warehouse-table {
font-family: Arial, sans-serif;
color: #333;
margin: 20px;
overflow-x: auto;
}
.group-header {
background: #f0f0f0;
padding: 12px 15px;
font-size: 16px;
font-weight: 500;
border-bottom: 1px solid #ddd;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
}
.data-table {
width: 100%;
border-collapse: collapse;
min-width: 1200px;
}
.table-header th {
background: #e9ecef;
padding: 12px 15px;
border: 1px solid #dee2e6;
font-size: 14px;
text-align: center;
white-space: nowrap;
}
.data-table td {
padding: 12px 15px;
border: 1px solid #dee2e6;
text-align: center;
font-size: 14px;
white-space: nowrap;
}
.active-row {
background: #b3d4fc !important;
}
.hover-effect {
transition: background-color 0.2s;
}
.hover-effect:hover {
background: #f5f7fa;
}
::v-deep .el-tree {
margin-top: 30px;
}
::v-deep .el-tree-node__content {
padding: 15px 0;
}
::v-deep .el-tree-node__label {
font-size: 14px;
}
::v-deep .el-tree-node {
margin-bottom: 10px;
}
::v-deep .el-tree-node__expand-icon {
display: none; /* 隐藏展开图标 */
}
</style>