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 b5ad41ab
authored
Jan 12, 2022
by
李金轩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改
1 parent
25d81ad1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
19 deletions
static/index.html
static/js/home.js
static/js/utility.js
static/index.html
View file @
b5ad41a
This diff is collapsed.
Click to expand it.
static/js/home.js
View file @
b5ad41a
...
...
@@ -19,13 +19,14 @@ new Vue({
data
:
function
()
{
return
{
currentIndex6
:
'1'
,
type6
:
1
,
direction6
:
1
,
picType6
:
1
,
personType6
:
1
,
time6
:
[
new
Date
(),
new
Date
()],
type6
:
0
,
direction6
:
[
0
,
1
,
2
],
picType6
:
2
,
personType6
:
[
0
,
1
],
time6_1
:
new
Date
(),
time6_2
:
[
new
Date
(
new
Date
(
new
Date
().
toLocaleDateString
()).
getTime
()),
new
Date
(
new
Date
(
new
Date
().
toLocaleDateString
()).
getTime
()
+
24
*
60
*
60
*
1000
-
1
)],
minPic
:
0
,
maxPic
:
10
,
maxPic
:
10
0
,
pageNum1
:
1
,
pageSize1
:
24
,
total1
:
0
,
...
...
@@ -96,6 +97,8 @@ new Vue({
endRange
:
"1.2"
,
isMallSelAll
:
false
,
isAccoutSelAll
:
false
,
isLoading1
:
false
,
isLoading2
:
false
,
//全选
checkedTraffic
:
[],
checkAllTraffic
:
false
,
...
...
@@ -445,29 +448,34 @@ new Vue({
plaza_id
:
this
.
plaza_id
.
toString
(),
zone_id
:
this
.
zone_id
.
toString
(),
// zone_id: 48,
gate_id
:
this
.
gate_id
,
gate_id
:
this
.
gate_id
.
toString
()
,
// gate_id: 268,
direction
:
this
.
direction6
,
direction
:
this
.
direction6
.
toString
()
,
picType
:
this
.
picType6
,
personType
:
this
.
personType6
,
personType
:
this
.
personType6
.
toString
()
,
// personType: 0,
startTime
:
formatDate
(
this
.
time6
[
0
]),
endTime
:
formatDate
(
this
.
time6
[
1
]),
startTime
:
formatDate
(
this
.
time6
_1
,
this
.
time6_2
[
0
]),
endTime
:
formatDate
(
this
.
time6
_1
,
this
.
time6_2
[
2
]),
page
:
this
.
pageNum1
-
1
,
pageSize
:
this
.
pageSize1
,
}
)
this
.
isLoading1
=
true
get
(
window
.
_CONF_
.
apiUrl2
+
'/faceRecognitions/faceRecord'
,
data
).
then
(
(
r
)
=>
{
this
.
isLoading1
=
false
this
.
dataList1
=
r
.
data
.
persons
this
.
total1
=
r
.
data
.
pageNum
}
).
catch
(
e
=>
{
this
.
isLoading1
=
false
}
)
},
confirmSearch2
:
function
()
{
const
data
=
filterEmptyValueInObject
(
...
...
@@ -480,14 +488,15 @@ new Vue({
plaza_id
:
this
.
plaza_id
.
toString
(),
zone_id
:
this
.
zone_id
.
toString
(),
// zone_id: 48,
gate_id
:
this
.
gate_id
,
gate_id
:
this
.
gate_id
.
toString
()
,
// gate_id: 268,
direction
:
this
.
direction6
,
direction
:
this
.
direction6
.
toString
()
,
picType
:
this
.
picType6
,
personType
:
this
.
personType6
,
personType
:
this
.
personType6
.
toString
()
,
// personType: 0,
startTime
:
formatDate
(
this
.
time6
[
0
]),
endTime
:
formatDate
(
this
.
time6
[
1
]),
startTime
:
formatDate
(
this
.
time6_1
,
this
.
time6_2
[
0
]),
endTime
:
formatDate
(
this
.
time6_1
,
this
.
time6_2
[
2
]),
page
:
this
.
pageNum2
-
1
,
pageSize
:
this
.
pageSize2
,
minPic
:
this
.
minPic
,
...
...
@@ -495,14 +504,20 @@ new Vue({
}
)
this
.
isLoading2
=
true
get
(
window
.
_CONF_
.
apiUrl2
+
'/faceRecognitions/faceRecordGroup'
,
data
).
then
(
(
r
)
=>
{
this
.
isLoading2
=
false
this
.
dataList2
=
r
.
data
.
persons
this
.
total2
=
r
.
data
.
pageNum
}
).
catch
(
e
=>
{
this
.
isLoading2
=
false
}
)
},
...
...
static/js/utility.js
View file @
b5ad41a
const
formatDate
=
function
(
date
)
{
return
moment
(
date
).
format
(
"YYYY-MM-DD
HH:mm:ss"
)
const
formatDate
=
function
(
date
1
,
data2
)
{
return
moment
(
date
1
).
format
(
"YYYY-MM-DD"
)
+
' '
+
moment
(
data2
).
format
(
"
HH:mm:ss"
)
}
const
getPagedList
=
function
(
list
,
columnNum
)
{
...
...
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