StationData.vue
5.36 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
<template>
<div class="station-data">
<el-table :data="tableData" style="width: 100%">
<el-table-column type="expand">
<template slot-scope="props">
<el-form label-position="left" inline class="demo-table-expand">
<el-form-item label="商品名称">
<span>{{ props.row.name }}</span>
</el-form-item>
<el-form-item label="所属店铺">
<span>{{ props.row.shop }}</span>
</el-form-item>
<el-form-item label="商品 ID">
<span>{{ props.row.id }}</span>
</el-form-item>
<el-form-item label="店铺 ID">
<span>{{ props.row.shopId }}</span>
</el-form-item>
<el-form-item label="商品分类">
<span>{{ props.row.category }}</span>
</el-form-item>
<el-form-item label="店铺地址">
<span>{{ props.row.address }}</span>
</el-form-item>
<el-form-item label="商品描述">
<span>{{ props.row.desc }}</span>
</el-form-item>
</el-form>
</template>
</el-table-column>
<el-table-column label="站台编码" prop="id"> </el-table-column>
<el-table-column label="站台名称" prop="name"> </el-table-column>
<el-table-column label="可出属性" prop="desc"> </el-table-column>
<el-table-column label="自动状态" prop="status"> </el-table-column>
<el-table-column label="占位" prop="status"> </el-table-column>
<el-table-column label="条码" prop="status"> </el-table-column>
<el-table-column label="PLC请求报文" prop="plcRequestMessage">
</el-table-column>
<el-table-column label="PLC请求装载" prop="plcRequestLoad">
</el-table-column>
<el-table-column label="PLC请求读码器" prop="plcRequestReader">
</el-table-column>
<el-table-column label="PLC请求条码" prop="plcRequestBarcode">
</el-table-column>
<el-table-column label="PLC请求重量" prop="plcRequestWeight">
</el-table-column>
<el-table-column label="PLC请求长度" prop="wcsRequestLength">
</el-table-column>
<el-table-column label="PLC请求宽度" prop="plcRequestWidth">
</el-table-column>
<el-table-column label="PLC请求高度" prop="plcRequestTargetAddress">
</el-table-column>
<el-table-column label="WCS请求装载" prop="wcsRequestLoad">
</el-table-column>
<el-table-column label="WCS请求读码器" prop="wcsRequestReader">
</el-table-column>
<el-table-column label="WCS请求条码" prop="wcsRequestBarcode">
</el-table-column>
<el-table-column label="WCS请求宽度" prop="wcsRequestWidth">
</el-table-column>
<el-table-column label="WCS请求目标地址" prop="wcsRequestTargetAddress">
</el-table-column>
<el-table-column label="PLC到达" prop="plcArrival"> </el-table-column>
<el-table-column label="分配地址" prop="assignedAddress">
</el-table-column>
<el-table-column label="PLC到达结果" prop="plcArrivalResult">
</el-table-column>
</el-table>
</div>
</template>
<script>
import { GetStationInfo } from "@/api/main";
export default {
name: "StationData",
data() {
return {
tableData: [
{
id: "12987122",
name: "好滋好味鸡蛋仔",
category: "江浙小吃、小吃零食",
desc: "荷兰优质淡奶,奶香浓而不腻",
address: "上海市普陀区真北路",
shop: "王小虎夫妻店",
shopId: "10333",
},
{
id: "12987123",
name: "好滋好味鸡蛋仔",
category: "江浙小吃、小吃零食",
desc: "荷兰优质淡奶,奶香浓而不腻",
address: "上海市普陀区真北路",
shop: "王小虎夫妻店",
shopId: "10333",
},
{
id: "12987125",
name: "好滋好味鸡蛋仔",
category: "江浙小吃、小吃零食",
desc: "荷兰优质淡奶,奶香浓而不腻",
address: "上海市普陀区真北路",
shop: "王小虎夫妻店",
shopId: "10333",
},
{
id: "12987126",
name: "好滋好味鸡蛋仔",
category: "江浙小吃、小吃零食",
desc: "荷兰优质淡奶,奶香浓而不腻",
address: "上海市普陀区真北路",
shop: "王小虎夫妻店",
shopId: "10333",
},
],
};
},
methods: {
start() {
// this.timer = setInterval(() => {
// this.GetStationInfo();
// }, 3000);
},
GetStationInfo() {
// GetStationInfo().then((res) => {
// console.log("站台", res.data);
// if (res.code === "Success") {
// this.tableData = res.data;
// }
// });
},
stop() {
clearInterval(this.timer);
},
},
created() {},
mounted() {
// this.GetStationInfo();
},
beforeDestroy() {
clearInterval(this.timer);
},
};
</script>
<style lang="scss" scoped>
.station-data {
width: 100%;
height: 100%;
}
</style>
<style>
.demo-table-expand {
font-size: 0;
}
.demo-table-expand label {
width: 90px;
color: #99a9bf;
}
.demo-table-expand .el-form-item {
margin-right: 0;
margin-bottom: 0;
width: 50%;
}
</style>