|
@@ -165,41 +165,7 @@
|
|
|
}
|
|
|
this.nearCabinetList.unshift(this.nearCabinetList.splice(index, 1)[0])
|
|
|
},
|
|
|
- markertapFn(e) {
|
|
|
- let markerId = e.markerId
|
|
|
- if (markerId == 5000) return
|
|
|
- if (this.selectType == 'store') {
|
|
|
- this.markers.map(item => {
|
|
|
- if (markerId == item.id) {
|
|
|
- item.iconPath = SHOPSELECTIMG
|
|
|
- let distance = common.getFlatternDistance(this.myLocation.longitude, this.myLocation
|
|
|
- .latitude, item.longitude, item.latitude)
|
|
|
- let time = Math.ceil(Number(((distance - 0) / 1000).toFixed(2)) * 25 / 10)
|
|
|
- let content = `${common.formatDistance(Number(distance))} 骑行${time}分钟`
|
|
|
- item.label = {
|
|
|
- content,
|
|
|
- color: "#0074FF",
|
|
|
- fontSize: 10,
|
|
|
- bgColor: "#fff",
|
|
|
- borderRadius: 10,
|
|
|
- padding: 5,
|
|
|
- anchorX: -45,
|
|
|
- anchorY: -6
|
|
|
- }
|
|
|
- this.activeMarkersId = item.id
|
|
|
- } else {
|
|
|
- item.iconPath = CABINET_ICON_URL
|
|
|
- item.label = {}
|
|
|
- }
|
|
|
- })
|
|
|
- } else if (this.selectType == 'cabinet') {
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- },
|
|
|
-
|
|
|
-
|
|
|
- locationFn() {
|
|
|
+ locationFn() {
|
|
|
let _this = this
|
|
|
if (this.selectType === "store") {
|
|
|
this.loadCarRentalList();
|
|
@@ -207,7 +173,6 @@
|
|
|
this.loadNearCabinetList();
|
|
|
}
|
|
|
},
|
|
|
-
|
|
|
tapSelectType(e) {
|
|
|
const {
|
|
|
type
|