xiongyi 4 өдөр өмнө
parent
commit
382121d92a

+ 83 - 0
pages/message/carLocation.css

@@ -0,0 +1,83 @@
+.container {
+	
+}
+
+.custom-bubble {
+	font-size: 28rpx;
+	position: absolute;
+}
+
+.custom-bubble-name {
+	font-weight: 600;
+	font-size: 36rpx;
+	color: #060809;
+	margin-bottom: 16rpx;
+}
+
+.custom-bubble-btn {
+	color: #ffffff;
+	background-color: #2A3A5A;
+	padding: 20rpx 32rpx;
+	border-radius: 0 34rpx 34rpx 0;
+}
+.block-view{
+	border-radius: 40rpx 40rpx 0rpx 0rpx;
+	overflow: hidden;
+	z-index: 100;
+	position: fixed;
+	bottom: 0;
+	width: 100%;
+	background-color: #FFFFFF;
+	height: 506rpx;
+	padding: 32rpx
+}
+	
+.block-car-time{
+	border-radius: 16rpx;
+	border: 3rpx solid #E7EAEE;
+	padding: 6rpx 24rpx 6rpx 6rpx;
+	
+	font-weight: 400;
+	font-size: 28rpx;
+	color: #353738;
+}
+.align-center{
+	align-items: center;
+}
+.car-time-text{
+	font-weight: 400;
+	font-size: 28rpx;
+	color: #353738;
+}
+.car-time-text-b{
+	font-family: DIN, DIN;
+	font-weight: 600;
+	font-size: 34rpx;
+	color: #0A59F7;
+	margin: 0 4rpx;
+}
+.car-nav-btn{
+	width: 112rpx;
+	height: 64rpx;
+	background: #060809;
+	border-radius: 32rpx;
+}
+.updata-time{
+	width: 100%;
+	text-align: center;
+	font-weight: 400;
+	font-size: 28rpx;
+	color: #060809;
+	margin: 80rpx 0 24rpx;
+}
+.car-config-btn{
+	height: 80rpx;
+	line-height: 80rpx;
+	width: 100%;
+	background: #060809;
+	border-radius: 40rpx;
+	text-align: center;
+	font-weight: 600;
+	font-size: 32rpx;
+	color: #FFFFFF;
+}

+ 34 - 9
pages/message/detail.vue

@@ -2,9 +2,10 @@
 	<view class="container">
 		<navBar name="信息详情"></navBar>
 		<view class="title">{{info.title}}</view>
-		<view >{{info.overview}}</view>
+		<view>{{info.overview}}</view>
 		<image v-if="info.cover" :src="info.cover" class="img" mode="aspectFill" />
 		<rich-text :nodes="info.content"></rich-text>
+		<location v-if="latlng.latitude && latlng.longitude" :latlng="latlng" />
 	</view>
 </template>
 
@@ -13,25 +14,49 @@
 	const http = require('@/common/http.js');
 	const request = require('@/common/request.js');
 	const common = require('@/common/common.js');
+	import location from './location.vue'
 	export default {
 		data() {
 			return {
 				id: '',
-				info: {}
+				info: {},
+				latlng: {
+					
+				}
 			}
 		},
+		components: {
+			location
+		},
 		onLoad(options) {
 			this.id = options.id
 			this.queryMsgDetail()
 		},
 		methods: {
 			queryMsgDetail() {
-				const req = { type:'PLAT',id : Number(this.id) }
+				const req = {
+					type: 'PLAT',
+					id: Number(this.id)
+				}
 				http.postApi(config.API_MESSAGE_DTL, req, res => {
 					if (res.succeed) {
 						this.info = res.data.data
+						console.log(this.info)
 						// 正则匹配所有<img>标签并插入自适应属性
-						this.info.content  = (this.info.content || '') .replace(/<img/g, '<img style="max-width: 100%; height: auto;"');
+						this.info.content = (this.info.content || '').replace(/<img/g,
+							'<img style="max-width: 100%; height: auto;"')
+
+
+						// this.info.latitude = 28.909
+						// this.info.longitude = 115.39742
+
+						if (this.info.latitude && this.info.longitude) {
+
+							this.latlng = {
+								latitude: this.info.latitude,
+								longitude: this.info.longitude
+							}
+						}
 					}
 				})
 
@@ -41,18 +66,18 @@
 </script>
 
 <style lang="scss" scoped>
-	.container{
+	.container {
 		display: flex;
 		flex-direction: column;
 		padding: 20rpx;
-		
-		.title{
+
+		.title {
 			font-size: 36rpx;
 			font-weight: bold;
 			margin: 20rpx;
 		}
-		
-		.img{
+
+		.img {
 			width: 750rpx;
 		}
 	}

+ 219 - 0
pages/message/location.vue

@@ -0,0 +1,219 @@
+<template>
+	<view class="">
+
+		<!-- #ifndef APP -->
+		<map @touchmove="hiddenNav" @markertap="showNav" style="width: 100%; height: calc(100vh - 506rpx);"
+			:latitude="latitude" :longitude="longitude" :markers="markers" show-location>
+		</map>
+		<!-- #endif -->
+		<!-- #ifdef APP-PLUS -->
+		<googleMap width="100%" height="600rpx" :mapData="{type:3,markers,zoom:13}" :myLocations='myLocation'>
+		</googleMap>
+		<!-- #endif -->
+
+	</view>
+	</view>
+</template>
+
+<script>
+	import dayjs from "dayjs";
+	import googleMap from "@/component/googleMap/googleMap";
+	const http = require('../../common/request.js');
+	const config = require('../../common/config.js');
+	const common = require('../../common/common.js');
+	import controlMixin from '@/mixin/index';
+	export default {
+		mixins: [controlMixin],
+		components: {
+			googleMap
+		},
+		props: {
+			latlng: {
+				type: Object,
+				default: () => {
+
+				}
+			}
+		},
+		watch: {
+			latlng: {
+				handler: function(newVal) {
+					if (newVal) {
+						this.init()
+					}
+				},
+				immediate: true
+			}
+		},
+		data() {
+			return {
+				id: 0, // 使用 marker点击事件 需要填写id
+				address: '',
+				city_name: '',
+				is_show_nav: true,
+				myLocation: {
+					// latitude:39.909,
+					// longitude: 116.39742,
+				},
+				markers: [], // 标记点
+				plate_number: '',
+				carLocationTimer: null, // 定时器变量,用于清除定时器
+			}
+		},
+		/**
+		 * 生命周期函数--监听页面加载
+		 */
+		mounted() {},
+		/**
+		 * 生命周期函数--监听页面显示
+		 */
+		onShow: function() {},
+
+		/**
+		 * 生命周期函数--监听页面卸载
+		 */
+		onUnload() {
+
+		},
+		methods: {
+			init() {
+				this.myLocation.latitude = this.latlng.latitude || 28.909
+				this.myLocation.longitude = this.latlng.longitude || 115.39742
+				// this.getAddressName(this.myLocation.latitude, this.myLocation.longitude)
+				let _this = this
+				uni.getLocation({
+					success(res) {
+						_this.myLocation.latitude = res.latitude
+						_this.myLocation.longitude = res.longitude
+						_this.markers = [{
+								width: 80 / 2,
+								height: 108 / 2,
+								longitude: _this.myLocation.longitude,
+								latitude: _this.myLocation.latitude,
+								iconPath: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
+								iconPathActive: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
+								content: ''
+							},
+							{
+								width: 22,
+								height: 40,
+								id: 50000,
+								iconPath: "https://zxappfile.bms16.com/zx_client/location_n.png",
+								longitude: res.longitude,
+								latitude: res.latitude,
+							}
+						]
+					}
+				})
+			},
+			navAddress() {
+				const that = this;
+				uni.openLocation({
+					latitude: that.latitude - 0,
+					longitude: that.longitude - 0,
+					scale: 15,
+					name: that.city_name,
+					address: that.address_name,
+					success: function(res) {}
+				});
+			},
+
+			async loadCarAddress() {
+				const that = this
+				http.postApi(config.API_DAYHIRE_CAR_LOCATION, {
+					plate_number: this.plate_number
+				}, (resp) => {
+					if (resp.data.code === 200) {
+						this.latitude = resp.data.data.latitude
+						this.longitude = resp.data.data.longitude
+						this.markers[0].latitude = resp.data.data.latitude
+						this.markers[0].longitude = resp.data.data.longitude
+
+					} else {
+						// 默认返回上一个页面再提示报错
+						uni.navigateBack({
+							delta: 1
+						})
+						common.simpleToast(resp.data.msg)
+					}
+				})
+			},
+
+			async getAddressName(latitude, longitude) {
+				const that = this
+				//#ifdef MP-ALIPAY
+				var _pi = "ali_index"
+				//#endif
+				//#ifdef MP-WEIXIN
+				var _pi = "wx_index"
+				//#endif
+				//#ifdef APP
+				var _pi = "APP"
+				//#endif
+				const location = {
+					lat: that.latitude,
+					lng: that.longitude,
+					pi: _pi
+				}
+				let {
+					data
+				} = await http.postApi(config.API_MAP_REGEO, location)
+				console.log(data.data.data)
+				if (data.code == 200) {
+					this.address = data.data.data.address
+				}
+			},
+
+			hiddenNav() {
+				this.is_show_nav = false
+			},
+
+			showNav() {
+				this.is_show_nav = true
+			},
+
+			findCar() {
+				const me = this
+				uni.showModal({
+					title: '提示',
+					content: '您确认开启闪灯鸣笛吗',
+					showCancel: true,
+					cancelText: '取消',
+					confirmText: '确定',
+					success: function(res) {
+						if (res.confirm) {
+							me.setData({
+								popText: '闪灯鸣笛',
+								cmdType: 'findCar',
+							})
+							me.tapBlueToothCmd('', true)
+						}
+					},
+					fail: function(res) {},
+					complete: function(res) {},
+				})
+			},
+			navAddress() {
+				const {
+					latitude,
+					longitude,
+					cityname,
+					address,
+					model_name
+				} = this.car_info
+				uni.openLocation({
+					latitude: latitude - 0,
+					longitude: longitude - 0,
+					scale: 15,
+					name: model_name,
+					address: address,
+					success: function(res) {}
+				});
+			}
+		}
+	};
+</script>
+
+<style>
+	@import './carLocation.css';
+</style>