fix: 修复subscriber实体地图时间参数长度不对的问题

This commit is contained in:
chenjinsong
2024-01-11 11:50:10 +08:00
parent 9ae4453587
commit b8c90fee71

View File

@@ -197,8 +197,8 @@ export default {
})*/ })*/
const params = { const params = {
resource: this.entity.entityName, resource: this.entity.entityName,
startTime: this.timeFilter.startTime, startTime: getSecond(this.timeFilter.startTime),
endTime: this.timeFilter.endTime endTime: getSecond(this.timeFilter.endTime)
} }
return axios.get(`${api.entity.locationTrack}`, { params }) return axios.get(`${api.entity.locationTrack}`, { params })
}, },