taskModel_host.vue
6.89 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
<template>
<div class="app-container">
<div class="app-container-father">
<div class="dv-container-left">
<div class="dv-container-left-component">
<div class="component-left">任务号:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">任务号:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">远程任务号:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">容器号:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">起点:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">终点:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">任务状态:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">开始时间:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
<div class="dv-container-left-component">
<div class="component-left">结束时间:</div>
<div class="component-right"><el-input v-model="name" /></div>
</div>
</div>
<div class="dv-container-right">
<el-table
v-loading="listLoading"
:data="list"
:header-cell-style="{ background: '#e4e4e4', color: '#000000' }"
element-loading-text="Loading"
border
fit
highlight-current-row
>
<el-table-column align="center" label="内部ID" width="95">
<template slot-scope="scope">
{{ scope.$index }}
</template>
</el-table-column>
<el-table-column label="远程任务号">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="远程前置任务号">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="容器号">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="任务类型">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="任务状态">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="起点">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="终点">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="途径点">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="当前节点">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="优先级">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="阶段">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="任务回传">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="长">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="宽">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="高">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="重">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="货物类型">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
<el-table-column label="仓库">
<template slot-scope="scope">
{{ scope.row.title }}
</template>
</el-table-column>
</el-table>
</div>
</div>
</div>
</template>
<script>
import { getList } from "@/api/table";
export default {
filters: {
statusFilter(status) {
const statusMap = {
published: "success",
draft: "gray",
deleted: "danger",
};
return statusMap[status];
},
},
data() {
return {
list: null,
listLoading: false,
name: "",
};
},
created() {
// this.fetchData()
},
methods: {
fetchData() {
this.listLoading = true;
getList().then((response) => {
this.list = response.data.items;
this.listLoading = false;
});
},
},
};
</script>
<style scoped lang="scss">
.app-container-father {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
display: flex;
.dv-container-left {
width: 20%;
background-color: #eeeeee;
height: 88vh;
border-radius: 7px;
box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
.dv-container-left-component {
width: 100%;
display: flex;
.component-left {
width: 40%;
height: 70px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.component-right {
width: 57%;
height: 70px;
display: flex;
justify-content: center;
align-items: center;
}
}
}
.dv-container-right {
width: 79%;
height: 88vh;
margin-left: 1%;
}
}
</style>