排行榜 轨迹

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' ENV = 'development'
# 共享电动车管理系统/开发环境 # 共享电动车管理系统/开发环境
# VUE_APP_BASE_API = 'https://dche.ccttiot.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 = 'https://che.chuangtewl.com/prod-api'
# VUE_APP_BASE_API = 'http://192.168.2.75:8088' # VUE_APP_BASE_API = 'http://192.168.2.75:8088'

View File

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

View File

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

View File

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