Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
罗鑫霖
/
vion-tools
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit e37ff087
authored
Sep 20, 2022
by
李君
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
优化
1 parent
da553829
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
31 deletions
src/Request/PublicAxiosInstance.js
src/views/ComparisonCapturedPictures/ComparisonCapturedPictures.vue
src/views/FeatureComparisonVerification/FeatureComparisonVerification.vue
src/Request/PublicAxiosInstance.js
View file @
e37ff08
...
@@ -14,8 +14,7 @@ const axiosInstance = axios.create(
...
@@ -14,8 +14,7 @@ const axiosInstance = axios.create(
// 请求拦截器
// 请求拦截器
axiosInstance
.
interceptors
.
request
.
use
(
axiosInstance
.
interceptors
.
request
.
use
(
config
=>
{
config
=>
{
// Cookies.set('atoken','ff2abb3b-667c-4d0f-b9f9-7121a229a416')
// Cookies.set('atoken','718de41a-617b-4cc8-a6ae-ca3acce9b62e')
if
(
!
Cookies
.
get
(
'atoken'
)){
if
(
!
Cookies
.
get
(
'atoken'
)){
ElMessage
({
ElMessage
({
message
:
`登录过期,请重新登录`
,
message
:
`登录过期,请重新登录`
,
...
...
src/views/ComparisonCapturedPictures/ComparisonCapturedPictures.vue
View file @
e37ff08
...
@@ -301,7 +301,6 @@
...
@@ -301,7 +301,6 @@
}
}
const
getGateList
=
function
(
val
)
{
const
getGateList
=
function
(
val
)
{
queryForm
.
gate_id
=
[]
gateList
.
value
=
[]
gateList
.
value
=
[]
snapshotRecordApi
.
getGateList
({
snapshotRecordApi
.
getGateList
({
account_id
:
queryForm
.
account_id
.
toString
(),
account_id
:
queryForm
.
account_id
.
toString
(),
...
...
src/views/FeatureComparisonVerification/FeatureComparisonVerification.vue
View file @
e37ff08
...
@@ -83,24 +83,28 @@
...
@@ -83,24 +83,28 @@
</div>
</div>
</a-col>
</a-col>
<a-col
:span=
"10"
class=
'imgBox1'
>
<a-col
:span=
"10"
class=
'imgBox1'
>
<p
v-if=
'featureList.length>0'
style=
"margin-left: 15px;"
>
<div
class=
"imgBox1_top1"
>
<span>
{{
featureList
[
0
].
person_unid
}}
</span>
<p
v-if=
"featureList.length>0"
style=
"margin-left: 15px;"
>
<span
style=
"float: right;"
>
共
{{
featureList
.
length
}}
张
</span>
<a-button
type=
"primary"
style=
"float: right;"
@
click=
"fullScreen('imgBox1_top1')"
>
{{
!
isFull
?
'全屏'
:
'退出'
}}
</a-button>
</p>
<span>
{{
featureList
[
0
].
person_unid
}}
</span>
<el-row
class=
"imgBox1_top"
:gutter=
"10"
v-loading=
"isLoadingFeature"
>
<span
style=
"float: right;margin-right: 15px;"
>
共
{{
featureList
.
length
}}
张
</span>
<el-col
:span=
"6"
class=
"itemBox"
v-for=
"item in featureList"
>
</p>
<el-image
:src=
"item.picture_url"
:fit=
"'fill'"
class=
"single-image"
>
</el-image>
<el-row
class=
"imgBox1_top"
:gutter=
"10"
v-loading=
"isLoadingFeature"
:style=
"
{'max-height':!isFull?'500px':'90%'}">
<span
class=
"el-icon-document downloadFile"
@
click=
"downloadFile(item,$event)"
></span>
<el-col
:span=
"6"
class=
"itemBox"
v-for=
"item in featureList"
>
<span
class=
"el-icon-picture-outline openImage"
@
click=
"openImage(item,$event)"
></span>
<el-image
:src=
"item.picture_url"
:fit=
"'fill'"
class=
"single-image"
>
<span
class=
"el-icon-delete delete"
@
click=
"deleteImage(item,$event)"
></span>
</el-image>
<p
class=
"featureNum"
>
{{
item
.
featureNum
?(
item
.
featureNum
).
toFixed
(
2
):
0
}}
</p>
<span
class=
"el-icon-document downloadFile"
@
click=
"downloadFile(item,$event)"
></span>
<div>
时间:
{{
item
.
counttime
}}
</div>
<span
class=
"el-icon-picture-outline openImage"
@
click=
"openImage(item,$event)"
></span>
<div>
方向:
{{
formatDirection
(
item
.
direction
)
}}
</div>
<span
class=
"el-icon-delete delete"
@
click=
"deleteImage(item,$event)"
></span>
<div>
地点:
{{
item
.
gate_name
}}
</div>
<p
class=
"featureNum"
>
{{
item
.
featureNum
?(
item
.
featureNum
).
toFixed
(
2
):
0
}}
</p>
</el-col>
<div>
时间:
{{
item
.
counttime
}}
</div>
<a-empty
v-if=
'featureList.length==0'
style=
'margin: 0 auto;'
></a-empty>
<div>
方向:
{{
formatDirection
(
item
.
direction
)
}}
</div>
</el-row>
<div>
地点:
{{
item
.
gate_name
}}
</div>
</el-col>
<a-empty
v-if=
'featureList.length==0'
style=
'margin: 0 auto;'
></a-empty>
</el-row>
</div>
<div
class=
"imgBox2_top"
>
<div
class=
"imgBox2_top"
>
<div
class=
"btns"
>
<div
class=
"btns"
>
<p
v-if=
'comparisonList.length>0'
style=
"margin-left: 15px;float: left"
>
<p
v-if=
'comparisonList.length>0'
style=
"margin-left: 15px;float: left"
>
...
@@ -110,8 +114,9 @@
...
@@ -110,8 +114,9 @@
阈值:
<el-input-number
class=
"thresholdInput"
size=
"small"
:controls=
'false'
:min=
"1"
:max=
"100"
v-model=
"threshold"
></el-input-number>
阈值:
<el-input-number
class=
"thresholdInput"
size=
"small"
:controls=
'false'
:min=
"1"
:max=
"100"
v-model=
"threshold"
></el-input-number>
<a-button
type=
"primary"
@
click=
"reComparison"
>
重新比对
</a-button>
<a-button
type=
"primary"
@
click=
"reComparison"
>
重新比对
</a-button>
<a-button
type=
"primary"
@
click=
"reComparisonFeature"
>
重提特征比对
</a-button>
<a-button
type=
"primary"
@
click=
"reComparisonFeature"
>
重提特征比对
</a-button>
<a-button
type=
"primary"
@
click=
"fullScreen('imgBox2_top')"
>
{{
!
isFull
?
'全屏'
:
'退出'
}}
</a-button>
</div>
</div>
<el-row
:gutter=
"10"
v-loading=
"isLoadingComparison"
class=
'imgBox2'
>
<el-row
:gutter=
"10"
v-loading=
"isLoadingComparison"
class=
'imgBox2'
:style=
"
{'max-height':!isFull?'500px':'90%'}"
>
<el-col
:span=
"6"
class=
"itemBox"
v-for=
"item in comparisonList"
>
<el-col
:span=
"6"
class=
"itemBox"
v-for=
"item in comparisonList"
>
<el-image
:src=
"item.picture_url"
:fit=
"'fill'"
class=
"single-image"
>
<el-image
:src=
"item.picture_url"
:fit=
"'fill'"
class=
"single-image"
>
</el-image>
</el-image>
...
@@ -179,6 +184,7 @@
...
@@ -179,6 +184,7 @@
const
boxObj
=
ref
({})
const
boxObj
=
ref
({})
const
currentItemId
=
ref
()
const
currentItemId
=
ref
()
const
isLoadingFeature
=
ref
(
false
)
const
isLoadingFeature
=
ref
(
false
)
const
isFull
=
ref
(
false
)
const
threshold
=
ref
(
75
)
const
threshold
=
ref
(
75
)
const
pagedTableDataList
=
computed
(
const
pagedTableDataList
=
computed
(
()
=>
{
()
=>
{
...
@@ -567,7 +573,9 @@
...
@@ -567,7 +573,9 @@
event
.
stopPropagation
()
event
.
stopPropagation
()
featureApi
.
updateImage
({
featureApi
.
updateImage
({
'personUnid'
:
item
.
unid
,
'personUnid'
:
item
.
unid
,
'id'
:
item
.
id
'id'
:
item
.
id
,
'unid'
:
item
.
unid
,
'countdate'
:
item
.
counttime
?
item
.
counttime
:
''
,
}).
then
((
r
)
=>
{
}).
then
((
r
)
=>
{
if
(
r
.
msg_code
==
200
){
if
(
r
.
msg_code
==
200
){
ElMessage
(
ElMessage
(
...
@@ -584,7 +592,9 @@
...
@@ -584,7 +592,9 @@
event
.
stopPropagation
()
event
.
stopPropagation
()
featureApi
.
updateImage
({
featureApi
.
updateImage
({
'personUnid'
:
boxObj
.
value
.
person_unid
,
'personUnid'
:
boxObj
.
value
.
person_unid
,
'id'
:
item
.
id
'id'
:
item
.
id
,
'unid'
:
item
.
unid
,
'countdate'
:
item
.
counttime
?
item
.
counttime
:
''
,
}).
then
((
r
)
=>
{
}).
then
((
r
)
=>
{
if
(
r
.
msg_code
==
200
){
if
(
r
.
msg_code
==
200
){
ElMessage
(
ElMessage
(
...
@@ -599,7 +609,28 @@
...
@@ -599,7 +609,28 @@
})
})
}
}
__main
()
__main
()
const
fullScreen
=
function
(
className
){
var
de
=
document
.
getElementsByClassName
(
className
)[
0
];
if
(
isFull
.
value
){
if
(
document
.
exitFullscreen
)
{
document
.
exitFullscreen
();
}
else
if
(
document
.
mozCancelFullScreen
)
{
document
.
mozCancelFullScreen
();
}
else
if
(
document
.
webkitExitFullscreen
)
{
document
.
webkitExitFullscreen
();
}
}
else
{
if
(
de
.
requestFullscreen
)
{
de
.
requestFullscreen
();
}
else
if
(
de
.
mozRequestFullScreen
)
{
de
.
mozRequestFullScreen
();
}
else
if
(
de
.
webkitRequestFullScreen
)
{
de
.
webkitRequestFullScreen
();
}
}
isFull
.
value
=
!
isFull
.
value
}
// const
return
{
return
{
// scalar
// scalar
isLoading
,
isLoading
,
...
@@ -611,6 +642,7 @@
...
@@ -611,6 +642,7 @@
currentItemId
,
currentItemId
,
centerDialogVisible
,
centerDialogVisible
,
otherPictureUrl
,
otherPictureUrl
,
isFull
,
// sequence
// sequence
accountList
,
accountList
,
plazaList
,
plazaList
,
...
@@ -637,7 +669,8 @@
...
@@ -637,7 +669,8 @@
downloadFile
,
downloadFile
,
openImage
,
openImage
,
deleteImage
,
deleteImage
,
addImage
addImage
,
fullScreen
}
}
}
}
}
}
...
@@ -697,17 +730,17 @@
...
@@ -697,17 +730,17 @@
}
}
.imgBox2
{
.imgBox2
{
min-height
:
400px
;
min-height
:
400px
;
max-height
:
500px
;
//
max-height
:
500px
;
overflow-y
:
auto
;
overflow-y
:
auto
;
}
}
.imgBox1_top
{
.imgBox1_top
{
width
:
100%
;
width
:
100%
;
min-height
:
400px
;
min-height
:
400px
;
max-height
:
500px
;
//
max-height
:
500px
;
overflow-y
:
auto
;
overflow-y
:
auto
;
border-bottom
:
10px
solid
#efefef
;
}
}
.imgBox2_top
{
.imgBox2_top
{
border-top
:
10px
solid
#efefef
;
.btns{
.btns{
text-align
:
right
;
text-align
:
right
;
margin-top
:
10px
;
margin-top
:
10px
;
...
@@ -715,6 +748,7 @@
...
@@ -715,6 +748,7 @@
}
}
button
{
button
{
margin-right
:
10px
;
margin-right
:
10px
;
padding
:
4px
7px
;
}
}
}
}
.colItem
{
.colItem
{
...
@@ -748,7 +782,10 @@
...
@@ -748,7 +782,10 @@
border
:
1px
solid
#1890ff
;
border
:
1px
solid
#1890ff
;
}
}
.thresholdInput
{
.thresholdInput
{
width
:
100px
;
width
:
60px
;
margin-right
:
15px
;
//
margin-right
:
15px
;
/deep/.el-input__inner{
text-align
:
left
;
}
}
}
</
style
>
</
style
>
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment