DataReplay.vue
8.2 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
<template>
<a-form :model="queryForm" layout="inline" :label-col="{ style: { width: '100px' } }">
<a-form-item label="集团:" style="padding: 5px 0">
<a-select v-model:value="queryForm.accountId" style="width: 280px" @change="onAccountChange"
:options="accountList" optionFilterProp="label" show-search>
</a-select>
</a-form-item>
<a-form-item label="广场:" style="padding: 5px 0">
<a-select v-model:value="queryForm.mallId" style="width: 280px" :options="plazaList"
optionFilterProp="label" show-search>
</a-select>
</a-form-item>
<a-form-item label="日期:" style="padding: 5px 0">
<a-date-picker v-model:value="queryForm.countdate" style="width: 280px" />
</a-form-item>
<a-form-item label="是否重提:" style="padding: 5px 0">
<a-select v-model:value="queryForm.reExtractFeature" style="width: 280px">
<a-select-option value="true">是</a-select-option>
<a-select-option value="false">否</a-select-option>
</a-select>
</a-form-item>
<a-form-item label="是否重读:" style="padding: 5px 0">
<a-select v-model:value="queryForm.reTrack" style="width: 280px">
<a-select-option value="true">是</a-select-option>
<a-select-option value="false">否</a-select-option>
</a-select>
</a-form-item>
<a-form-item style="padding: 5px 0">
<a-button type="primary" @click="preview" :loading="isLoading">添加任务</a-button>
</a-form-item>
</a-form>
<a-table :dataSource="dataList" v-loading="isLoading" :columns="columns" rowKey='id' :pagination="false">
<template #countdate="{ text }">
<span >{{ moment(text).format('YYYY-MM-DD') }}</span>
</template>
<template #reExtractFeature="{ text }">
<span >{{ text?"是":'否' }}</span>
</template>
<template #reTrack="{ text }">
<span >{{ text?"是":'否' }}</span>
</template>
</a-table>
</template>
<script>
import {
reactive,
ref,
toRaw
} from 'vue'
import moment from 'moment'
import snapshotRecordApi from '@/views/SnapshotCluster/SnapshotRecord/SnapshotRecordApi'
import {
isArray
} from '@/PublicUtil/Judgment'
import {
filterEmptyValueInObject,
formatDate,
formatTime
} from '@/PublicUtil/PublicUtil'
import dataReplayApi from '@/views/DataReplay/DataReplay.js'
import {
PlusOutlined
} from '@ant-design/icons-vue'
import {ElMessage} from 'element-plus'
const columns = [
{
title: '广场名称',
dataIndex: 'mallName',
align: 'center',
},
{
title: '重跑日期',
dataIndex: 'countdate',
align: 'center',
slots: {
customRender: 'countdate',
},
},
{
title: '是否重提特征',
dataIndex: 'reExtractFeature',
align: 'center',
slots: {
customRender: 'reExtractFeature',
},
},
{
title: '是否重读轨迹文件',
dataIndex: 'reTrack',
align: 'center',
slots: {
customRender: 'reTrack',
},
},
{
title: '数据总数',
dataIndex: 'total',
align: 'center',
},
{
title: '已完成数',
dataIndex: 'completedNum',
align: 'center',
}
]
export default {
components: {
PlusOutlined,
VNodes: (_, {
attrs
}) => {
return attrs.vnodes
},
},
setup() {
// scalar
const isLoading = ref(false)
const isSuspended = ref(false)
// sequence
const accountList = ref([])
const plazaList = ref([])
const dataList = ref([])
const queryForm = reactive({
accountId: '',
mallId: '',
countdate: moment().format('YYYY-MM-DD'),
reExtractFeature:'true',
reTrack:'true'
})
const onAccountChange = function() {
getPlazaList()
}
const getPlazaList = function() {
queryForm.mallId = ''
plazaList.value = []
snapshotRecordApi.getPlazaList({
account_id: queryForm.accountId.toString()
}).then(
(r) => {
if (isArray(r)) {
for (const item of r) {
plazaList.value.push({
value: item.id,
label: item.name,
})
}
if(r&&r.length){
queryForm.mallId=r[0].id
}
}
}
)
}
const getAccountList = function() {
queryForm.accountId = ''
accountList.value = []
snapshotRecordApi.getAccountList().then(
(r) => {
if (isArray(r)) {
for (const item of r) {
accountList.value.push({
value: item.id,
label: item.name,
})
}
if(r&&r.length){
queryForm.accountId=r[0].id
getPlazaList()
}
}
}
)
}
const preview = function() {
isLoading.value = true
const rawData = toRaw(queryForm)
dataReplayApi.getRematch(filterEmptyValueInObject({
accountId: rawData.accountId.toString(),
mallId: rawData.mallId.toString(),
countdate: rawData.countdate,
reExtractFeature: rawData.reExtractFeature,
reTrack: rawData.reTrack,
})).then(
(r) => {
isLoading.value = false
if(r.code==200){
ElMessage(
{
message: `添加成功`,
type: 'success'
}
)
return
}else{
ElMessage(
{
message: r.msg,
type: 'error'
}
)
return
}
}
)
}
const getDataList = function(){
dataReplayApi.getRematchList().then(
(r) => {
if (isArray(r)) {
dataList.value = r
}else{
dataList.value = []
}
}
)
}
const __main = function() {
getAccountList()
getDataList()
}
__main()
return {
// scalar
isLoading,
// sequence
accountList,
plazaList,
dataList,
queryForm,
columns,
// function
onAccountChange,
preview,
moment
}
}
}
</script>
<style lang="less" scoped>
</style>