排行榜 轨迹

This commit is contained in:
tx 2024-08-26 17:56:13 +08:00
parent e60046b7fe
commit b03b0ff2e5
4 changed files with 36 additions and 16 deletions

View File

@ -5,8 +5,8 @@ VUE_APP_TITLE = 共享电动车管理系统
ENV = 'development'
# 共享电动车管理系统/开发环境
# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
# VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
# VUE_APP_BASE_API = 'http://192.168.2.75:8088'

View File

@ -138,7 +138,7 @@ export default {
AMapLoader.load({
key: globalConfig.aMap.key, // WebKey load
version: "2.0", // JSAPI 1.4.15
plugins: ["AMap.MoveAnimation"]
plugins: ["AMap.PlaceSearch", "AMap.MoveAnimation"], // "AMap.MoveAnimation"
}).then((AMap) => {
let abb;
try {

View File

@ -146,7 +146,7 @@ export default {
AMapLoader.load({
key: globalConfig.aMap.key, // WebKey load
version: "2.0", // JSAPI 1.4.15
plugins: ["AMap.PlaceSearch"], // 使'AMap.Scale'
plugins: ["AMap.PlaceSearch", "AMap.MoveAnimation"], // "AMap.MoveAnimation"
}).then((AMap) => {
this.AMap = AMap;
this.map = new AMap.Map("container", {
@ -191,6 +191,7 @@ export default {
});
},
trajectory() {
this.marker=null
console.log('轨迹调用了11',this.tripRouteStr);
this.line = JSON.parse(this.tripRouteStr)
console.log("this.line================" + this.line)
@ -201,6 +202,7 @@ export default {
console.error("Error parsing tripRouteStr:", error);
return;
}
console.log(abb);
let latitude = parseFloat(abb[0][1]);
let longitude = parseFloat(abb[0][0]);
let latitude1 = parseFloat(abb[abb.length - 1][1]);
@ -593,10 +595,12 @@ export default {
this.doSearchNearBy(keyword, center.lng, center.lat, 1000);
},
startAnimation() {
console.log(this.marker,'this.markerthis.marker');
this.marker.moveAlong(this.line, {
//
duration: 200,//
});
},
pauseAnimation() {
this.marker.pauseMove();

View File

@ -812,7 +812,7 @@
</el-row> -->
<location-map
v-if="showPlaceSearchMap&&tripRouteStr!=''"
v-if="showPlaceSearchMap && tripRouteStr != ''"
ref="map"
height="400px"
:key="key"
@ -1011,8 +1011,8 @@ export default {
selected: null,
//
form: {},
startTime: "2024-08-20 20:22",
endTime: "2024-08-22 16:00",
startTime: "",
endTime: "",
//
rules: {
// modelId: [
@ -1094,7 +1094,6 @@ export default {
this.showPlaceSearchMap = true; //
}
},
},
beforeDestroy() {
this.$eventBus.$off("close-all-dialogs", this.closeDialog);
@ -1102,14 +1101,14 @@ export default {
methods: {
startTimecg(value) {
console.log("start变化", value);
if(this.startTime!=''&&this.endTime!=''){
this.gettj()
if (this.startTime != "" && this.endTime != "") {
this.gettj();
}
},
endTimecg(value) {
console.log("start变化", value);
if(this.startTime!=''&&this.endTime!=''){
this.gettj()
if (this.startTime != "" && this.endTime != "") {
this.gettj();
}
},
handleScroll() {
@ -1392,7 +1391,7 @@ export default {
qrcode: null,
longitude: null,
latitude: null,
tripRouteStr: '',
tripRouteStr: "",
};
this.resetForm("form");
if (this.userName === "admin") {
@ -1461,7 +1460,21 @@ export default {
this.showPlaceSearchMap = true;
this.key++;
this.orderRecordKey += 1;
this.gettj()
//
const now = new Date();
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, "0");
const day = String(now.getDate()).padStart(2, "0");
const hours = String(now.getHours()).padStart(2, "0");
const minutes = String(now.getMinutes()).padStart(2, "0");
// startTime 0
this.startTime = `${year}-${month}-${day} 00:00`;
// endTime
this.endTime = `${year}-${month}-${day} ${hours}:${minutes}`;
this.gettj();
},
gettj() {
let data = {
@ -1469,14 +1482,17 @@ export default {
startTime: this.formatDate(this.startTime),
endTime: this.formatDate(this.endTime),
};
this.showPlaceSearchMap=false
gettrajectory(data).then((response) => {
this.tripRouteStr = response.data;
// this.re
this.showPlaceSearchMap=true
setTimeout(() => {
this.$refs.map.trajectory();
}, 600);
// console.log(this.tripRouteStr,'this.tripRouteStr');
});
},