|
@@ -190,7 +190,7 @@
|
|
|
:fast="item.fastEquipmentInfos"
|
|
:fast="item.fastEquipmentInfos"
|
|
|
:slow="item.slowEquipmentInfos"
|
|
:slow="item.slowEquipmentInfos"
|
|
|
:sId="item.StationID"
|
|
:sId="item.StationID"
|
|
|
- :distance="item.stationLatDistance"
|
|
|
|
|
|
|
+ :distance="item.distance"
|
|
|
:latitude="item.location.stationLat"
|
|
:latitude="item.location.stationLat"
|
|
|
:longitude="item.location.stationLng"
|
|
:longitude="item.location.stationLng"
|
|
|
:availableParkingNum="item.availableParkingNum"
|
|
:availableParkingNum="item.availableParkingNum"
|
|
@@ -212,7 +212,7 @@
|
|
|
:fast="station[markersIndex].fastEquipmentInfos"
|
|
:fast="station[markersIndex].fastEquipmentInfos"
|
|
|
:slow="station[markersIndex].slowEquipmentInfos"
|
|
:slow="station[markersIndex].slowEquipmentInfos"
|
|
|
:sId="station[markersIndex].StationID"
|
|
:sId="station[markersIndex].StationID"
|
|
|
- :distance="station[markersIndex].stationLatDistance"
|
|
|
|
|
|
|
+ :distance="station[markersIndex].distance"
|
|
|
:latitude="station[markersIndex].location.stationLat"
|
|
:latitude="station[markersIndex].location.stationLat"
|
|
|
:longitude="station[markersIndex].location.stationLng"
|
|
:longitude="station[markersIndex].location.stationLng"
|
|
|
:availableParkingNum="station[markersIndex].availableParkingNum"
|
|
:availableParkingNum="station[markersIndex].availableParkingNum"
|
|
@@ -417,7 +417,7 @@ const refreshStation = (location: any) => {
|
|
|
const _markersIndex = stationPage.value.page === 1 ? 0 : markersIndex.value;
|
|
const _markersIndex = stationPage.value.page === 1 ? 0 : markersIndex.value;
|
|
|
// console.log("xxxxx",res)
|
|
// console.log("xxxxx",res)
|
|
|
const _markers: any[] = res.map((item, index) => {
|
|
const _markers: any[] = res.map((item, index) => {
|
|
|
- item.totalFee =(Number(item.serviceFee)+Number(item.electricityFee)).toFixed(2)
|
|
|
|
|
|
|
+ item.totalFee =(Number(item.currentPolicyInfo?.servicePrice||0)+Number(item.currentPolicyInfo?.elecPrice||0)).toFixed(2)
|
|
|
length = 0;
|
|
length = 0;
|
|
|
available = 0;
|
|
available = 0;
|
|
|
// item.equipmentInfos &&
|
|
// item.equipmentInfos &&
|