Commit b5ad41ab by 李金轩

修改

1 parent 25d81ad1
......@@ -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: 100,
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
}
)
},
......
const formatDate = function(date) {
return moment(date).format("YYYY-MM-DD HH:mm:ss")
const formatDate = function(date1, data2) {
return moment(date1).format("YYYY-MM-DD") + ' ' + moment(data2).format("HH:mm:ss")
}
const getPagedList = function(list, columnNum) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!