PersonGroupDialog.vue
10 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<template>
<a-modal
title="人员分类"
v-if='isVisible'
v-model:visible="isVisible"
width="90%"
height='90%'
centered
destroyOnClose
class="detail-modal"
>
<div class="person-group">
<div class="seart-part">
<a-form :model="formData" layout="inline">
<a-form-item label="选择日期:" style="padding: 5px 0">
<a-date-picker v-model:value="formData.date" valueFormat="YYYY-MM-DD" :format="'YYYY-MM-DD'" style="width: 240px"/>
</a-form-item>
<a-form-item label="选择时间:" style="padding: 5px 0">
<a-time-picker format="HH:mm:ss" valueFormat="HH:mm:ss" v-model:value="formData.startTime" style="width: 140px;margin-right: 10px"/>
<a-time-picker format="HH:mm:ss" valueFormat="HH:mm:ss" v-model:value="formData.endTime" style="width: 140px"/>
</a-form-item>
<a-form-item style="padding: 5px 0">
<a-button type="primary" @click="clickSearch" :loading="isLoading">查询</a-button>
<a-button @click="handleAddGroup()" :loading="addGroupLoading" style="margin-left: 10px">加入选中图片</a-button>
<a-alert style="display: inline-block;margin-left: 20px" message="提示:单击选择图片,再次单击,取消选择。双击预览图片。" type="info" />
</a-form-item>
</a-form>
</div>
<div class="content-part">
<div class="left-part">
<el-row>
<el-col :span="4" v-for="item in personList" :key="item.id">
<div
style="margin: 0 5px"
:class="item.id === currentPerson.id ? 'actived' : ''"
@click="handleClick(item)"
@dblclick="handlePreview(item.picture_url)"
>
<el-image :src="item.picture_url"
:fit="'fill'"
class="single-image">
</el-image>
<!--<div>时间:{{ item.counttime }}</div>-->
<!--<div>人员类型:{{ item.person_type==1?'店员':(item.person_type==0?'顾客':'未知') }}({{ item.childAdult==1?'成人':(item.childAdult==0?'儿童':'未知') }})</div>-->
<!--<div>性别:{{ formatGender(item.gender) }}({{item.age}})</div>-->
<!--<div class="direction" :class="'direction'+item.direction">方向:{{ formatDirection(item.direction) }}</div>-->
<!--<div>地点:{{ item.gate_name }}</div>-->
</div>
</el-col>
</el-row>
</div>
<div class="right-part">
<template v-if="groupList.length > 0">
<div class="classBox" v-for="row in groupList" :key="row.person_unid">
<div style="text-align: right;margin-bottom: 10px;">
<a-button @click="handleAddGroup(row.personList)" :loading="addGroupLoading" style="margin-left: 10px">加入此分组内图片</a-button>
</div>
<el-row>
<el-col class="itemBox" :span="3" v-for="item in row.personList" :key="item.id">
<div
style="margin: 0 5px"
:class="isSelectedImg(item) ? 'actived' : ''"
@click="handleSelectImg(item)"
@dblclick="handlePreview(formatImgUrl(item.picture_url))"
>
<el-image :src="formatImgUrl(item.picture_url)"
:fit="'fill'"
class="single-image">
</el-image>
<p class="featureNum">{{(item.featureNum).toFixed(2)}}</p>
<div>时间:{{ item.counttime }}</div>
<!--<div>人员类型:{{ item.person_type==1?'店员':(item.person_type==0?'顾客':'未知') }}({{ item.childAdult==1?'成人':(item.childAdult==0?'儿童':'未知') }})</div>-->
<!--<div>性别:{{ formatGender(item.gender) }}({{item.age}})</div>-->
<!--<div class="direction" :class="'direction'+item.direction">方向:{{ formatDirection(item.direction) }}</div>-->
<div>地点:{{ item.gate_name }}</div>
</div>
</el-col>
</el-row>
</div>
</template>
<a-empty style="margin-top: 200px;" v-else />
</div>
</div>
</div>
<!--<div v-if="" class="preview-image">
<a-image :width="200" src="" />
</div>-->
<template #footer>
<a-button @click="onCancel">关闭</a-button>
</template>
</a-modal>
</template>
<script>
import { ref } from "vue";
import moment from "moment/moment";
import { preview } from 'vue3-image-preview';
// import { formatDate } from "@/PublicUtil/PublicUtil";
import featureApi from "@/views/FeatureComparisonVerification/api";
import { ElMessage } from "element-plus";
import clusterResultApi from "@/views/SnapshotCluster/ClusterResult/ClusterResultApi";
export default {
name: 'PersonGroupDialog',
props: ['queryForm'],
setup(props, { emit }) {
const isVisible = ref(false);
const personList = ref([])
// 右侧分组
const groupList = ref([])
const currentPerson = ref({})
// 表单
function getInitialFormData() {
return {
date: '',
startTime: '',
endTime: '',
}
}
const formData = ref(getInitialFormData())
const personUnid = ref('')
const initDialog = (data) => {
console.log('initDialog', data)
formData.value = getInitialFormData()
// 初始化数据
groupList.value = []
personList.value = []
isLoading.value = false
isVisible.value = true;
// 获取组数据
personList.value = data.perrsonList || []
personUnid.value = data.person_unid
// 搜索搜索条件默认值
formData.value.startTime = '00:00:00'
formData.value.endTime = '23:59:59'
if (props.queryForm && props.queryForm.date) {
formData.value.date = moment(props.queryForm.date).format('YYYY-MM-DD')
} else {
formData.value.date = moment().format('YYYY-MM-DD')
}
};
const formatImgUrl = (url) => {
return window._baseImgUrl + url
}
const selectedImgList = ref([])
const handleSelectImg = (data) => {
console.log('handleSelectImg', data)
const isExist = selectedImgList.value.some(item => item.id === data.id)
if (isExist) {
// 删除
selectedImgList.value = selectedImgList.value.filter(item => item.id !== data.id)
} else {
// 添加
selectedImgList.value.push(data)
}
}
const isSelectedImg = (data) => {
return selectedImgList.value.some(item => item.id === data.id)
}
const addGroupLoading = ref(false)
const handleAddGroup = (dataList) => {
const targetDataList = dataList || selectedImgList.value
if (targetDataList.length > 0) {
const strUnidList = targetDataList.map((item) => item.unid).join(',')
const params = {
unid: strUnidList,
personUnid: personUnid.value,
countdate:formData.value.date,
}
addGroupLoading.value = true
clusterResultApi.updateRecognition(params).then((r) => {
console.log('r', r)
if(r.msg_code === 200) {
ElMessage({
message: `添加成功`,
type: 'success'
})
selectedImgList.value = []
clickSearch()
} else {
ElMessage({
message: `添加失败`,
type: 'error'
})
}
}).finally(() => {
addGroupLoading.value = false
})
} else {
ElMessage({
message: `请选择分组图片`,
type: 'error'
})
}
}
const handleClick = (data) => {
console.log('handleClick', data)
currentPerson.value = data
}
const handlePreview = (url) => {
console.log('handlePreview', url)
preview({
images: url,
});
}
const onCancel = () => {
isVisible.value = false;
groupList.value = []
};
const isLoading = ref(false)
const clickSearch = () => {
const parmas = {
person_unid: currentPerson.value.person_unid,
pic_type: 2,
endTime: formData.value.date + ' ' + formData.value.endTime,
startTime: formData.value.date + ' ' + formData.value.startTime,
countdate: formData.value.date,
/* startTime: '2024-04-10 00:00:00',
endTime: '2024-04-10 23:59:59',
countdate: '2024-04-10', */
pic_id: currentPerson.value.id,
ip: window._baseImgUrl,
plaza_id: currentPerson.value.mall_id
}
isLoading.value = true
featureApi.getAllPersonContrastList(parmas).then((r) => {
console.log('featureApi', r)
if(r.msg_code === 200) {
groupList.value = r.data
} else {
ElMessage({
message: `查询失败`,
type: 'error'
})
}
}).finally(() => {
isLoading.value = false
})
};
return {
isVisible,
formData,
personList,
groupList,
handleClick,
onCancel,
initDialog,
clickSearch,
isLoading,
currentPerson,
formatImgUrl,
selectedImgList,
handleSelectImg,
isSelectedImg,
handleAddGroup,
addGroupLoading,
handlePreview,
};
},
};
</script>
<style lang="less" scoped>
.seart-part {
margin-bottom: 10px;
}
.content-part {
display: flex;
}
.left-part {
width: 400px;
height: 560px;
overflow: auto;
//border: solid 1px black;
margin-right: 10px;
}
.right-part {
flex: 1;
height: 560px;
overflow: auto;
}
.actived{
border: 3px solid red;
}
.classBox{
border: solid 1px black;
overflow-y: hidden;
margin: 0;
padding: 10px;
height: auto;
margin-bottom: 10px;
}
.itemBox {
position: relative;
.featureNum {
position: absolute;
top: 0;
left: 15px;
color: red;
font-weight: 900;
font-size: 16px;
}
}
</style>