Browse Source

最近骑行,杂项等

郭宇琦 1 week ago
parent
commit
871e5ba4e0

+ 6 - 0
common/config_gyq.js

@@ -75,5 +75,11 @@ var config = {
 	//获取逾期金额:
 	API_FLK_CAR_OVERDUE_MONEY: api_web_url +'?r=flk/car/overdue-money',
 	API_DEVICE_TRACK: `http://bmsapi.dev.bms16.com/device/track?token=${storage.getUserToken()}`,
+	//未读数量
+	API_FLK_MESSAGE_UNREAD_COUNT: api_web_url +'?r=flk/message/get-unread-count',
+	//	行驶轨迹
+	API_CAR_TRACK_INFO: api_web_url +'?r=flk/car/track-info',
+	
+	
 };
 module.exports = config;

+ 28 - 1
component/googleMap/googleMap.vue

@@ -14,6 +14,8 @@
 	export default {
 		data() {
 			return {
+				trackPolyline:null,
+				polylines:{},
 				zoom:14,
 				keyId:'',
 				types:1,
@@ -90,7 +92,31 @@
 				new google.maps.event.addListener(_this.map, "click", function(event) {
 					_this.$ownerInstance.callMethod('bindTapMap')
 				});
-
+				
+				//如果有polylines则添加
+				
+				if(_this.polylines.points.length > 0){
+					console.log('添加轨迹')
+					console.log(_this.polylines.points)
+					let path = _this.polylines.points.map(item=>{
+						return {
+							lng:item.lng,
+							lat:item.lat
+						}
+					})
+				_this.trackPolyline = new google.maps.Polyline({
+				    path: path,
+				    // geodesic: true,          // 沿地球曲率连线
+				    strokeColor: _this.polylines.color,  // 轨迹线颜色
+				    strokeOpacity: 1.0,      // 透明度
+				    strokeWeight: 3          // 线宽
+				  });
+				  // 更新轨迹线的路径
+				    _this.trackPolyline.setMap(_this.map);
+					
+				    // 可选:自动移动地图中心到最新位置
+				    _this.map.panTo(path[path.length - 1]);
+				}
 				//如果有Markers则添加
 				if (_this.Markers.length > 0) {
 					_this.addMarkers(_this.$ownerInstance)
@@ -147,6 +173,7 @@
 
 			update(newValue, _, ownerInstance) {
 				if(newValue.zoom) this.zoom = newValue.zoom || 14
+				if(newValue.polylines.points.length > 0) this.polylines = newValue.polylines
 				if (newValue.markers && newValue.markers.length < 1) return
 				this.Markers = newValue.markers || []
 				this.types = newValue.type

+ 32 - 6
pages/index/index.vue

@@ -1,13 +1,16 @@
 <template>
 	<view >
-		<block v-if="isLogin && car_list.length > 0">
+		<block v-if="isLogin && car_info.car_sn">
 			<view class="container-view">
 			<view class="flex-row flex-between align-center padding_about_40">
 				<view class="car-name-view" @tap="navSwitchCar">
 					<text style="margin-right: 10rpx;">{{car_info.car_name}}</text>
 					<img src="https://qiniu.bms16.com/FoSXDpVGvbdmwbX3CMUBvR7X4IzI" style="width: 14rpx;height: 14rpx;" alt="">
 				</view>
-				<image @click="routerLink('/pages/message/index')" src="https://qiniu.bms16.com/FtlfBtBE5-TeTI5EdrciX_u8u_Sx" style="width: 48rpx;height: 48rpx;" mode=""></image>
+				<view @click="routerLink('/pages/message/index')" class="news">
+					<view v-if="(newsList.plate_count + newsList.device_count) > 0" class="num"></view>
+					<image  src="https://qiniu.bms16.com/FtlfBtBE5-TeTI5EdrciX_u8u_Sx" style="width: 48rpx;height: 48rpx;" mode=""></image>
+				</view>
 			</view>
 			<view v-if="isOverdueShow" class="overdue-view flex-row flex-between">
 				<view class="overdue-view-text flex-row">
@@ -104,8 +107,10 @@
 <script>
 	var app = getApp();
 	var config = require('@/common/config.js');
+	var config_gyq = require('@/common/config_gyq.js');
 	var common = require('@/common/common.js');
 	var http = require('@/common/http.js');
+	var request = require('@/common/request.js');
 	var storage = require('@/common/storage.js');
 	import Control from './components/control/control'
 	import MapCard from './components/mapCard/mapCard'
@@ -120,6 +125,7 @@
 	export default {
 		data() {
 			return {
+				newsList:{},
 				img_list:[],
 				isLogin:false,
 				isOverdueShow:false,
@@ -167,8 +173,6 @@
 					this.loadIsLogin()
 					return
 				}
-				this.loadModelList()
-			
 		},
 		/**
 		 * 生命周期函数--监听页面显示
@@ -180,10 +184,12 @@
 				if (!user_token) {
 					this.isLogin = false
 					//this.loadIsLogin()
+					
 					return
 				}
+				this.newsNumFn()
 				this.isLogin = true
-				if(this.car_info.car_sn){
+				if(!this.car_info.car_sn){
 					this.loadUserCarList()
 				}
 			
@@ -196,6 +202,14 @@
 			}
 		},
 		methods: {
+			async newsNumFn(){
+				let {data} = await request.postApi(config_gyq.API_FLK_MESSAGE_UNREAD_COUNT,{})
+				if(data.code == 200){
+					this.newsList = data.data
+				}
+				
+				
+			},
 			locationFn() {
 				uni.getLocation({
 					success(res) {
@@ -395,6 +409,18 @@
 	};
 </script>
 
-<style>
+<style lang="scss" scoped>
 	@import './index.css';
+	.news{
+		position: relative;
+		.num{
+			position: absolute;
+			right: 0;
+			top: 0;
+			width: 15rpx;
+			height: 15rpx;
+			background-color: #FA2918;
+			border-radius: 50%;
+		}
+	}
 </style>

+ 29 - 4
pages/my/my.vue

@@ -8,8 +8,11 @@
 		<!-- #endif -->
 		
 		<view class="user-switch-row">
-			<image :src="QINIU_URL + 'FlL5BtEdMES2-mntjR9D3CX_LWYv'" class="message"
-				@tap="routerLink({ url: '/pages/message/index' })" />
+			<view class="news">
+				<view v-if="(newsList.plate_count + newsList.device_count) > 0" class="num"></view>
+				<image :src="QINIU_URL + 'FlL5BtEdMES2-mntjR9D3CX_LWYv'" class="message"
+					@tap="routerLink({ url: '/pages/message/index' })" />
+			</view>
 		</view>
 		<view class="user-info-wrap" @tap="loginHandle">
 			<image :src="userInfo.headimg || defaultAvatarUrl" class="head-img" />
@@ -52,7 +55,7 @@
 		defaultHeadImg
 	} from '@/common/constant'
 	import CustomTabbar from '@/component/customTabbar/index'
-
+var request = require('@/common/request.js');
 	var config = require('../../common/config_gyq.js');
 	var http = require('../../common/request.js');
 
@@ -63,6 +66,7 @@
 		},
 		data() {
 			return {
+				newsList:{},
 				statusBarHeight:0,
 				car_info: {},
 				QINIU_URL,
@@ -121,13 +125,22 @@
 		onShow() {
 			this.car_info = uni.getStorageSync('car_info') || {};
 			const user_token = storage.getUserToken()
-			user_token && this.loadUserInfo()
+			if(user_token){
+				this.loadUserInfo()
+				this.newsNumFn()
+			}
 
 		},
 		onLoad() {
 			this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
 		},
 		methods: {
+			async newsNumFn(){
+				let {data} = await request.postApi(config.API_FLK_MESSAGE_UNREAD_COUNT,{})
+				if(data.code == 200){
+					this.newsList = data.data
+				}
+			},
 			async loadUserInfo() {
 				const userInfo = storage.getUserInfoData()
 				this.setData({
@@ -186,4 +199,16 @@
 
 <style lang="scss" scoped>
 	@import './my.scss';
+	.news{
+		position: relative;
+		.num{
+			position: absolute;
+			right: 0;
+			top: 0;
+			width: 15rpx;
+			height: 15rpx;
+			background-color: #FA2918;
+			border-radius: 50%;
+		}
+	}
 </style>

+ 20 - 9
pages/order/order.vue

@@ -1,10 +1,11 @@
 <template>
 	<view class="container-view">
 		<view class="order-type-view flex-row flex-between">
-			<view class="car-model-list flex-row">
+			<view v-if="selectOrderType == 0" @click="srcFn(`/pages/carList/carList`)" class="car-model-list flex-row">
 				<view class="car-model-text">{{car_info.car_name}}</view><img class="right-corner-icon"
 					src="https://qiniu.bms16.com/Fqs6TrEmcdT7QNEdKWs9Hir2cacO" alt="">
 			</view>
+			<view v-else></view>
 			<view class="order-package-type-view flex-row">
 				<view v-for="(type, index) in orderTypes" :key="index" @tap="checkOrderType" :data-type="type.value"
 					:class="['package-type-list', 'flex-row', {'package-type-list-i': selectOrderType === type.value}]"
@@ -19,8 +20,8 @@
 			class="order-card">
 			<view class="card-top flex-row">
 				<view v-if="selectOrderType == 1">{{ item.car_name }}</view>
-				
-				
+
+
 				<block v-if="selectOrderType == 0">
 					<view v-if="item.package_type == 1">
 						{{item.total_day}}天
@@ -32,7 +33,7 @@
 						{{item.total_day}}天{{item.num}}次
 					</view>
 				</block>
-				
+
 				<view v-if="item.pay_status==2 && selectOrderType == 1">
 					<view class="card card-k" v-if="item.order_status == 1">待取车</view>
 					<view class="card card-k" v-else-if="item.order_status == 2">待激活</view>
@@ -44,7 +45,7 @@
 					<view class="card card-k" v-else-if="item.order_status == 8 ">订单已支付,已取消</view>
 					<view class="card card-k" v-else-if=" item.order_status == 9">订单未支付,已取消</view>
 				</view>
-				
+
 				<view v-if="item.pay_status!=2 && selectOrderType == 1">
 					<view class="card card-k" v-if="item.pay_status == 0">待支付</view>
 					<view class="card card-k" v-else-if="item.pay_status == 1">支付中</view>
@@ -158,7 +159,7 @@
 	export default {
 		data() {
 			return {
-				is_next:0,
+				is_next: 0,
 				car_info: {},
 				selectOrderType: 1,
 				orderTypes: [{
@@ -189,7 +190,6 @@
 		 * 生命周期函数--监听页面加载
 		 */
 		onLoad: function(options) {
-			this.car_info = uni.getStorageSync('car_info') || {};
 			const locationStr = uni.getStorageSync('user_current_location');
 			if (locationStr) {
 				this.myLocation = locationStr;
@@ -201,8 +201,14 @@
 		 * 生命周期函数--监听页面显示
 		 */
 		onShow: function() {
+			this.car_info = uni.getStorageSync('car_info') || {};
+			this.page = 1
 			this.hireOrderList = []
-			this.bindHireOrderList()
+			if(this.selectOrderType == 1){
+				this.bindHireOrderList()
+			}else{
+				this.bindExchangeOrderFn()
+			}
 		},
 
 		// 分享给好友
@@ -216,7 +222,7 @@
 		 * 页面上拉触底事件的处理函数
 		 */
 		onReachBottom: function() {
-			if(!this.is_next) return
+			if (!this.is_next) return
 			this.page++
 			if (this.selectOrderType == 0) {
 				this.bindExchangeOrderFn()
@@ -236,6 +242,11 @@
 			}
 		},
 		methods: {
+			srcFn(url) {
+				uni.navigateTo({
+					url,
+				})
+			},
 			calculateRemainingDays(expirationDate) {
 				// 获取当前时间
 				const now = dayjs();

+ 2 - 1
pages/travelingTrack/travelingTrack.css

@@ -19,10 +19,11 @@
 	margin-bottom: 32rpx;
 }
 
-.info-top img {
+.info-top .img {
 	width: 125rpx;
 	height: 125rpx;
 	border-radius: 16rpx;
+	overflow: hidden;
 }
 
 .top-left > view:nth-of-type(1) {

+ 107 - 73
pages/travelingTrack/travelingTrack.vue

@@ -1,19 +1,34 @@
 <template>
 	<view class="container">
+		<!-- #ifdef MP-WEIXIN -->
 		<map class="my_app" id="myMap" :longitude="myLocation.longitude" :latitude="myLocation.latitude" :scale="scale"
 			:markers="markers" :enable-satellite="mapParams.enableSatellite" :enable-traffic="mapParams.enableTraffic"
 			show-location :polyline="polylines" enable-3D show-compass enable-overlooking @markertap="bindMarkertap"
 			style="width: 100%;height: 50vh;">
 		</map>
+		<!-- #endif -->
+
+		<!-- #ifdef APP -->
+		<googleMap keyId="1" width="100%" height='calc(50vh - 0rpx)' v-if="myLocation.latitude" :mapData='{
+			markers,
+			type:3,
+			polylines
+		}' :myLocation='myLocation'></googleMap>
+		<!-- #endif -->
+
 		<view class="car-info">
 			<view class="info-top flex-row flex-between">
 				<view class="top-left">
-					<view>{{trackInfo.car_name}}</view>
-					<view>{{trackInfo.license_plate_num}}</view>
+					<view>{{carInfo.car_name}}</view>
+					<view>{{carInfo.license_plate_number}}</view>
+				</view>
+				<view>
+					<image class="img"
+						:src="carInfo.model_images || 'https://qiniu.bms16.com/FguJzvAGtd4AdhDKXVLUo7XiMxWQ'"
+						mode="aspectFill"></image>
 				</view>
-				<view><img src="https://qiniu.bms16.com/FguJzvAGtd4AdhDKXVLUo7XiMxWQ" /></view>
 			</view>
-			<view class="ctime">{{tools.formatTime(trackInfo.hire_begin_time)}}</view>
+			<view class="ctime">{{time}}</view>
 			<view class="info-center flex-row">
 				<view class="center-left flex-row">
 					<view></view>
@@ -31,7 +46,7 @@
 					<view>行驶里程</view>
 				</view>
 				<view class="bottom-item">
-					<view>{{tools.toFix(trackInfo.using_time/3600)}}<text>h</text></view>
+					<view>{{tools.toFix((trackInfo.using_time || 0) /3600)}}<text>h</text></view>
 					<view>骑行时长</view>
 				</view>
 				<view class="bottom-item">
@@ -49,6 +64,7 @@
 <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
 <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
 <script>
+	import googleMap from "@/component/googleMap/googleMap";
 	var common = require('../../common/common.js');
 	var amap = require('../../common/amap-wx.js');
 	var config = require('../../common/config.js');
@@ -57,8 +73,13 @@
 	var request = require('../../common/request.js');
 	var storage = require('../../common/storage.js');
 	export default {
+		components: {
+			googleMap,
+		},
 		data() {
 			return {
+				time:'未知',
+				carInfo: {},
 				id: 0, // 使用 marker点击事件 需要填写id
 				title: 'map',
 				// markers: [],
@@ -82,7 +103,7 @@
 				points: [],
 				pointIndex: 0,
 				isPageUnloaded: false,
-				polylines: [], // 路线
+				polylines: {}, // 路线
 				markers: [], // 标记点
 				trackInfo: {},
 				plate_number: ''
@@ -93,18 +114,19 @@
 		 */
 		onLoad(options) {
 			console.log(uni.getStorageSync('car_info'))
+			this.carInfo = uni.getStorageSync('car_info')
 			this.plate_number = options.plate_number
 			const me = this
 			// common.loading();
 			const storedLocation = uni.getStorageSync('user_current_location');
 			if (storedLocation.longitude && storedLocation.latitude) {
 				// 如果本地有存储的定位信息,则直接使用
-				me.setData({
+				this.setData({
 					myLocation: storedLocation
 				})
-				me.loadTrackInfo()
+				// this.loadTrackInfo()
 			} else {
-				me.getLocationAndSave();
+				this.getLocationAndSave();
 			}
 			this.init()
 		},
@@ -118,73 +140,85 @@
 			async init() {
 				let {
 					data
-				} = await request.postApi(config_gyq.API_DEVICE_TRACK, {
-					"macid": "013656219992",
-					"from": 1742572800,
-					"to": 1742659199,
-					"language": ""
+				} = await request.postApi(config_gyq.API_CAR_TRACK_INFO, {
+					car_sn: this.carInfo.car_sn,
 				})
-				console.log(data)
-			},
-			loadTrackInfo() {
-				const me = this
-				http.postApi(config.API_DAYHIRE_CAR_TRACK_INFO, {
-					plate_number: this.plate_number
-				}, (resp) => {
-					if (resp.data.code === 200) {
-						me.trackInfo = resp.data.data
-						me.pointsList = resp.data.data.points
-						//接口返回描绘线段
-						me.polylines = [{
-							points: resp.data.data.points,
-							color: "#0BD28E",
-							width: 6
-						}]
-						if (me.pointsList.length >= 2) {
-							const len = me.pointsList.length - 1
-							//点收尾标记
-							me.markers = [{
-								id: 1,
-								latitude: me.pointsList[0].latitude,
-								longitude: me.pointsList[0].longitude,
-								iconPath: 'https://qiniu.bms16.com/Fo5xXb4G6AEQpRcqZybvV29jVvIw',
-								width: 30,
-								height: 40
-							}, {
-								id: 2,
-								latitude: me.pointsList[len].latitude,
-								longitude: me.pointsList[len].longitude,
-								iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
-								width: 30,
-								height: 34
-							}]
-							me.getAddressName(me.pointsList[0].latitude, me.pointsList[0].longitude, 1)
-							me.getAddressName(me.pointsList[len].latitude, me.pointsList[len].longitude, 2)
-						} else {
-							me.markers = [{
-								id: 2,
-								latitude: me.pointsList[0] ? me.pointsList[0].latitude : me.myLocation
-									.latitude,
-								longitude: me.pointsList[0] ? me.pointsList[0].longitude : me.myLocation
-									.longitude,
-								iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
-								width: 48,
-								height: 52
-							}]
-							// 这里的markers的length只为1
-							me.getAddressName(me.markers[0].latitude, me.markers[0].longitude, 1)
+				if (data.code == 200) {
+					this.trackInfo = data.data
+					this.pointsList = data.data.points.map(item => {
+						return {
+							...item,
+							lng: item.longitude,
+							lat: item.latitude,
 						}
-						console.log(me.markers, 'me.markers');
+					})
+
+					if(this.pointsList.length < 1){
+						common.simpleToast('暂无骑行数据!')
+						setTimeout(function() {
+							uni.navigateBack({
+								delta: 1
+							});
+						}, 800);
+						return 
+					}
+					//接口返回描绘线段
+					// #ifdef APP
+					this.polylines = {
+						points: this.pointsList,
+						color: "#0BD28E",
+						width: 6
+					}
+					// #endif
+
+					// #ifdef MP-WEIXIN
+					this.polylines = [{
+						points: this.pointsList,
+						color: "#0BD28E",
+						width: 6
+					}]
+					if(this.pointsList.length > 0){
+						this.time = this.pointsList[0].time
+					}
+					// #endif
+					if (this.pointsList.length >= 2) {
+						const len = this.pointsList.length - 1
+						//点收尾标记
+						this.markers = [{
+							id: 1,
+							latitude: this.pointsList[0].latitude,
+							longitude: this.pointsList[0].longitude,
+							iconPath: 'https://qiniu.bms16.com/Fo5xXb4G6AEQpRcqZybvV29jVvIw',
+							width: 30,
+							height: 40
+						}, {
+							id: 2,
+							latitude: this.pointsList[len].latitude,
+							longitude: this.pointsList[len].longitude,
+							iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
+							width: 30,
+							height: 34
+						}]
+						this.getAddressName(this.pointsList[0].latitude, this.pointsList[0].longitude, 1)
+						this.getAddressName(this.pointsList[len].latitude, this.pointsList[len].longitude, 2)
 					} else {
-						// 默认返回上一个页面再提示报错
-						// uni.navigateBack({
-						// 	delta: 1
-						// })
-						common.simpleToast(resp.data.msg)
+						this.markers = [{
+							id: 2,
+							latitude: this.pointsList[0] ? this.pointsList[0].latitude : this.myLocation
+								.latitude,
+							longitude: this.pointsList[0] ? this.pointsList[0].longitude : this.myLocation
+								.longitude,
+							iconPath: 'https://qiniu.bms16.com/FgfUVOFAeY-tXUilteSpVem3HTb7',
+							width: 48,
+							height: 52
+						}]
+						// 这里的markers的length只为1
+						this.getAddressName(this.markers[0].latitude, this.markers[0].longitude, 1)
 					}
-				})
-			},
 
+				}
+				console.log(data)
+			},
 			getAddressName(latitude, longitude, type) {
 				const pData = {
 					lng: longitude,
@@ -221,10 +255,10 @@
 							longitude: res.longitude,
 							latitude: res.latitude
 						}
-						me.setData({
+						this.setData({
 							myLocation: myLocation
 						})
-						me.loadTrackInfo()
+						// this.loadTrackInfo()
 						uni.setStorageSync('user_current_location', myLocation);
 					},
 					fail: function(res) {