浏览代码

服务栏目修改

郭宇琦 2 周之前
父节点
当前提交
a15fc344ed

+ 2 - 0
common/http.js

@@ -160,6 +160,7 @@ function getApi(url, data, successCallBack, failCallBack) {
 	data.token = token;
 	data.v = config.APP_VERSION;
 	data.appid =  appid
+	data.from = 'app'
 	//#ifdef MP-ALIPAY
 	data.from = 'ali'
 	//#endif
@@ -177,6 +178,7 @@ function postApi(url, data, successCallBack, failCallBack) {
 	data.token = token;
 	data.v = config.APP_VERSION;
 	data.appid = appid
+	data.from = 'app'
 	//#ifdef MP-ALIPAY
 	data.from = 'ali'
 	//#endif

+ 14 - 120
component/customTabbar/index.vue

@@ -7,15 +7,17 @@
         class="tab-item" 
         @tap="routerPush(item.url)"
       >
-        <img :src="curtTab === item.name ? item.activeIcon : item.icon" class="tab-icon"/>
+		<image :src="curtTab === item.name ? item.activeIcon : item.icon" class="tab-icon"></image>
         <text :class="['base-text', curtTab === item.name && 'checked']">{{ item.label }}</text>
       </view>
       <view v-if="!isScanCondeRentalCar" class="center-entrance" @tap="navToInputPage">
-        <img src="https://qiniu.bms16.com/Fm_kDVr1TIeIbbBW6-5bz0r-cECO" style="width: 122rpx; height: 122rpx;"/>
+       
+		<image  src="https://qiniu.bms16.com/Fm_kDVr1TIeIbbBW6-5bz0r-cECO" style="width: 122rpx; height: 122rpx;"></image>
         <!-- <img src="https://qiniu.bms16.com/FhCHLz8rQJ5mpJ6nUA4RbKiVkUOo" style="width: 120rpx; height: 24rpx;"/> -->
       </view>
 	  <view v-else class="center-entrance" @tap="navToInputPage">
-		<img src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3" style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"/>
+		<!-- <img src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3" style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"/> -->
+		<image src="https://qiniu.bms16.com/FqcCjRjhzHFUkZj76SMHNXCZHwb3" style="width: 122rpx; height: 122rpx;margin-bottom: 14rpx;"></image>
 	  	<view class="scan-text">扫一扫</view>
 	  </view>
     </view>
@@ -66,129 +68,19 @@ export default {
 	  isScanCondeRentalCar: false,
     };
   },
-  created: function () {
-    if (appWhiteListFilter.isScanCondeRentalCar()) {
-    	this.setData({
-    		isScanCondeRentalCar: true
-    	})
-    }
-  },
+  // created: function () {
+  //   if (appWhiteListFilter.isScanCondeRentalCar()) {
+  //   	this.setData({
+  //   		isScanCondeRentalCar: true
+  //   	})
+  //   }
+  // },
   methods: {
     routerPush(url) {
-      
       // uni.setStorageSync('selectedIndex', data.index);
       uni.switchTab({ url });
       // uni.navigateTo({ url })
     },
-    loadFaceToken() {
-      const me = this
-      http.postApi(config.API_USER_FACE_TOKEN, {}, (resp) => {
-        if (resp.data.code === 200) {
-          me.face_token = resp.data.data.token
-          me.face_key = resp.data.data.key
-          uni.navigateTo({
-            url: '/pages/livenessView/livenessView?face_token=' + me.face_token +
-              '&face_key=' + this.face_key,
-            success: function(res) {},
-            fail: function(res) {},
-            complete: function(res) {},
-          })
-        } else {
-          common.simpleToast(resp.data.msg)
-        }
-      })
-    },
-    _getParams() {
-      return new Promise((reslove ,reject) => {
-        http.postApi(config.API_DAYHIRE_CAR_CAR_LIST, {}, res => {
-            const { data = [], wait_active_predetermine = null } = res.data.data
-            const obj = {
-              carList: data,
-              wait_active_predetermine,
-              order_status: data.length ? data[0].order_status : 0
-            }
-            reslove(obj)
-        })
-      })
-    },
-	
-	loadScanCode(location,battery_sn) {
-		const pData = {
-			longitude: location.longitude,
-			latitude: location.latitude,
-			battery_sn: battery_sn
-		}
-		const me = this
-		http.postApi(config.API_DAYHIRE_CAR_CAR_INFO, pData, (resp) => {
-			uni.hideLoading()
-			if (resp.data.code === 200) {
-				const timestamp = Date.now(); // 获取当前时间戳(毫秒)  
-				const isOffline = (Math.floor(timestamp / 1000) - resp.data.data.last_comm_time) > 1800
-				me.plate_number = resp.data.data.license_plate_number
-				if (resp.data.data.last_comm_time === 0 || isOffline) {
-					common.simpleToast('此车辆已离线,请选择其他车辆')
-				} else {
-					let carInfo = JSON.stringify(resp.data.data)
-					const car_model = resp.data.data.model_info.car_model
-					const model_images = resp.data.data.model_info.model_images.split(',')
-					const return_imgs = resp.data.data.return_imgs
-					var model_id = resp.data.data.model_info.model_id
-					if (resp.data.data.has_owner) { //车辆正在被使用
-						if (resp.data.data.is_mine) { //是本人在使用
-							uni.showModal({
-								title: '提示',
-								content: '已有正在使用的车辆,是否跳转至车辆详情页?',
-								cancelText: '取消',
-								confirmText: '确定',
-								success: function(res) {
-									this.isReturnHome = false
-									uni.navigateTo({
-										url: '/pages/battery/battery?plate_number=' +
-											this.plate_number
-									});
-								},
-								fail: function(res) {},
-								complete: function(res) {},
-							})
-						} else {
-							common.simpleToast('此车辆正在被使用')
-						}
-					} else {
-						if (me.order_sn&&me.order_sn != '') {
-							if (this.order_model_id != model_id) { // 预租车型与之前预约车型不一致
-								common.simpleToast('与预约车型不符')
-							} else {
-								this.isReturnHome = false
-								uni.navigateTo({
-									url: '/pages/activation/activation?plate_number=' +
-										this.plate_number + '&order_sn=' + this.order_sn +
-										'&car_model=' + car_model + '&model_image=' +
-										model_images[0] + '&return_imgs=' + JSON.stringify(
-											return_imgs),
-									fail() {}
-								})
-							}
-		
-						} else {
-							this.setData({
-								flashValue: 'off',
-								isReturnHome: false
-							})
-							// this.isReturnHome = false
-							uni.redirectTo({
-								url: '/pages/carIntroduce/carIntroduce?carInfo=' +
-									encodeURIComponent(carInfo) + '&plate_number=' + this
-									.plate_number,
-								fail() {}
-							})
-						}
-					}
-				}
-			} else {
-				common.simpleToast(resp.data.msg)
-			}
-		})
-	},
 	
     async navToInputPage() {
       const me = this
@@ -314,6 +206,8 @@ export default {
         })
       }
     }
+  
+  
   }
 };
 </script>

+ 3 - 1
pages.json

@@ -314,7 +314,9 @@
 		"color": "#8a8a8a",
 		"selectedColor": "#0074FF",
 		"list": [{
-				"pagePath": "pages/index/index"
+			
+				// "pagePath": "pages/index/index"
+				"pagePath": "pages/loginRegister/login"
 				// "text": "租车",
 				// "iconPath": "static/resource/images/home-w.png",
 				// "selectedIconPath": "static/resource/images/home-b.png"

+ 7 - 3
pages/index/index.vue

@@ -22,7 +22,7 @@
 					<u-line-progress style="width: 100rpx;" active-color="#2ADA62" height="10" :show-percent="false" :percent="car_info.soc"></u-line-progress>
 					<text class="quantity-text flex-row">
 						<text style="font-weight:400;font-size: 22rpx;">{{$t("续航")}}</text>
-						<text style="font-size: 36rpx;">{{endurance}}</text><text style="font-size: 30rpx;">km</text> 
+						<text style="font-size: 36rpx;">{{car_info.endurance}}</text><text style="font-size: 30rpx;">km</text> 
 					</text>
 				</view>
 				<!-- <img :src="car_info.model_images||'https://qiniu.bms16.com/Fg8_p7083jpsy8BXG4bR6yMs7jQX'" style="width: 100%;height: 526rpx;" alt=""> -->
@@ -159,10 +159,12 @@
 		onLoad: function(options) {
 			const user_token = storage.getUserToken()
 				if (!user_token) {
+					
 					this.loadIsLogin()
 					return
 				}
-			this.loadModelList()
+				this.loadModelList()
+			
 		},
 		/**
 		 * 生命周期函数--监听页面显示
@@ -191,11 +193,13 @@
 			console.log(getFunctionTag().activeTag)
 			this.contrilList = getFunctionTag().activeTag
 			const user_token = storage.getUserToken()
+			console.log(user_token)
 				if (!user_token) {
 					this.loadIsLogin()
 					return
 				}
-			this.loadUserCarList()
+				this.loadUserCarList()
+			
 		},
 		// 分享给好友
 		onShareAppMessage: function(res) { //发送给朋友

+ 3 - 3
pages/service/components/carRentalList/carRentalList.vue

@@ -19,9 +19,9 @@
 						<view class="second-view flex-row">
 							<view><img :src="'https://qiniu.bms16.com/FhEvnKUckAHPtWaC04mi2s53IEVj'"></view>
 							<view class="bottom-item">
-								<view>{{items.model_list[0].car_model}}</view>
+								<view>{{item.model_list[0].car_model}}</view>
 								<view>
-									续航{{ items.model_list[0].endurance }}|重量{{ items.model_list[0].weight }}
+									续航{{ item.model_list[0].endurance }}|重量{{ item.model_list[0].weight }}
 								</view>
 								<view class="flex-row flex-between">
 									<view class="bottom-text">
@@ -49,7 +49,7 @@
 					scroll-with-animation @scroll="onScroll">
 					<view v-for="(items,index) in item.model_list" :key="index"
 						:style="{ marginLeft: index > 0 ? '32rpx' : '0' }" class="form-item" :data-item="items"
-						@tap="navToOrderPage">
+						>
 						<view v-if="items.price_setting.length!=0" class="second-view flex-row">
 							<view><img
 									:src="items.model_images!=''?items.model_images:'https://qiniu.bms16.com/FhEvnKUckAHPtWaC04mi2s53IEVj'">

+ 29 - 169
pages/service/service.vue

@@ -1,6 +1,6 @@
 <template>
 	<view class="service-main">
-		<!-- <map @markertap='markertapFn' class="my_app" id="myMap" :longitude="myLocation.longitude"
+		<map @markertap='markertapFn' class="my_app" id="myMap" :longitude="myLocation.longitude"
 			:latitude="myLocation.latitude" :scale="18" show-location enable-3D show-compass enable-overlooking
 			:enable-satellite="false" :markers="markers" :polyline="polylines" :enable-traffic="false"
 			style="width: 100%; height: calc(50vh - 0rpx)">
@@ -9,12 +9,7 @@
 					{{ item.available_cnt }}
 				</cover-view>
 			</block>
-		</map> -->
-		<view id="container">
-			<view style="width: 100%; height: calc(50vh - 0rpx)" id="mapModule" :prop="nearShopList"
-				:change:prop="mapModule.update" :lngLat="renderLngLat" :change:lngLat="mapModule.initAmap"
-				:curLngLat="curLngLat" :change:curLngLat="mapModule.loadPanTo"></view>
-		</view>
+		</map>
 		<!-- 地图控件 -->
 		<cover-view :class="[
         'control-icon-view',
@@ -84,23 +79,15 @@
 	import {
 		LEASE_TYPE_ARR
 	} from '@/common/constant.js'
-	
-	var transform = require('../../common/transform.js');
-	var meMarker = []
-	var polylinePath = null
-	
 	const SHOPSELECTIMG = `https://qiniu.bms16.com/FkS7hjd6tl6ydLIi9-SQI0vGboMW`
 	const CABINET_ICON_URL =
 		"https://zxappfile.bms16.com/zx_client/shop_mark.png";
-		
+
 	const CABINET_ICON_URLS =
-			"https://qiniu.bms16.com/FmYKRICv7sPvsFuFB3wo9MIkpd0-";
+		"https://qiniu.bms16.com/FmYKRICv7sPvsFuFB3wo9MIkpd0-";
 	export default {
 		data() {
 			return {
-				curLngLat: {},
-				map:{},
-				nearShopList: [],
 				activeMarkersId: 0,
 				myLocation: {
 					latitude: 23.099994,
@@ -152,136 +139,6 @@
 		},
 
 		methods: {
-			moveToLocation: function() {
-				const that = this;
-				uni.getLocation({
-					// type: 'gcj02',
-					success: function(res) {
-						that.setData({
-							myLocation: {
-								longitude: res.longitude,
-								latitude: res.latitude
-							},
-							centerLocation: {
-								longitude: res.longitude,
-								latitude: res.latitude
-							},
-							curLngLat: {
-								time: new Date().valueOf(),
-								longitude: res.longitude,
-								latitude: res.latitude
-							}
-						});
-						storage.setUserCurrentLocation(that.myLocation);
-						that.mapCtx.moveToLocation();
-						that.setData({
-							showShopInfo: false,
-							isIcShow: false,
-							scale: 14
-						});
-					},
-					fail: function(res) {
-						console.log(res)
-						common.simpleToast(JSON.stringify(res));
-						// common.simpleToast(that.$t('获取地址失败,请授权重新打开'));
-					},
-					complete: function(res) {}
-				});
-			},
-			
-			initAmap(lngLat, _, ownerInstance) {
-				console.log('谷歌跑通')
-				lngLat = {
-					lat: lngLat.latitude,
-					lng: lngLat.longitude
-				}
-				lngLat = transform.wgs_gcj_encrypts(lngLat)
-				// lngLat = transform.gcj_wgs_encrypts(lngLat)
-				// console.log(lngLat, "坐标系lngLat")
-				let _this = this
-				const script = document.createElement('script')
-				script.src =
-					'https://map.gpsall.cc/maps/api/js?key=AIzaSyA70JUgslynjmVv0NPz3hcvkTbPZpr2i_c&callback=initMap&libraries=&v=weekly'
-				window.initMap = function() {
-					setTimeout(() => {
-						_this.loadAmap(lngLat)
-					}, 1500);
-				};
-				document.head.appendChild(script)
-			},
-			loadAmap(lngLat) {
-				let _this = this
-				var myOptions = {
-					center: {
-						lat: parseFloat(lngLat.latitude),
-						lng: parseFloat(lngLat.longitude)
-					},
-					zoom: 16,
-					panControl: false,
-					zoomControl: false,
-					scaleControl: false,
-					streetViewControl: false
-				}
-				_this.map = new google.maps.Map(document.getElementById("mapModule"), myOptions);
-				// const marker = new google.maps.Marker({
-				// 	position: {
-				// 		lat: parseFloat(lngLat.latitude),
-				// 		lng: parseFloat(lngLat.longitude)
-				// 	},
-				// 	icon: {
-				// 		url: "https://zxappfile.bms16.com/zx_client/red.png",
-				// 		scaledSize: new google.maps.Size(10, 10)
-				// 	},
-				// 	map: _this.map
-				// });
-				//地图绑定事件
-				new google.maps.event.addListener(_this.map, "click", function(event) {
-					_this.$ownerInstance.callMethod('bindTapMap')
-				});
-				console.log("render初始化数据")
-				_this.$ownerInstance.callMethod('loadInitData')
-			},
-			loadPanTo(lngLat, _, ownerInstance) {
-				lngLat = {
-					lat: lngLat.latitude,
-					lng: lngLat.longitude
-				}
-				console.log("lngLat", lngLat)
-				lngLat = transform.wgs_gcj_encrypts(lngLat)
-				console.log("lngLat", lngLat)
-			
-				this.map.panTo(new google.maps.LatLng(lngLat.latitude, lngLat.longitude))
-			},
-			update(newValue, _, ownerInstance) {
-				// console.log("newValue新数据")
-				// console.log(newValue)
-				// const _this = this
-				// _this.nearShopList = newValue
-				// for (var i = 0; _this.markersArray.length > i; i++) {
-				// 	_this.markersArray[i].setMap(null);
-				// }
-				// for (var i = 0; _this.nearShopList.length > i; i++) {
-				// 	var nearShop = _this.nearShopList[i]
-				// 	const marker = new google.maps.Marker({
-				// 		id: nearShop.id,
-				// 		map: _this.map,
-				// 		data: nearShop,
-				// 		title: "",
-				// 		position:new google.maps.LatLng( parseFloat(nearShop.latitude), parseFloat(nearShop.longitude)),
-				// 		icon: {
-				// 			url: nearShop.iconPath,
-				// 			size: new google.maps.Size(30, 32),
-				// 			scaledSize: new google.maps.Size(30, 32)
-				// 		},
-				// 		zIndex: 20
-				// 	});
-				// 	_this.markersArray.push(marker)
-				// 	google.maps.event.addListener(marker, 'click', (event) => {
-				// 		console.log(JSON.stringify(marker.data))
-				// 		_this.loadMarkertap(ownerInstance, marker.data)
-				// 	})
-				// }
-			},
 			markertapFn(e) {
 				let markerId = e.markerId
 				if (markerId == 5000) return
@@ -309,23 +166,24 @@
 							item.label = {}
 						}
 					})
-				}else if(this.selectType == 'cabinet'){
-					
+				} else if (this.selectType == 'cabinet') {
+
 				}
 
 			},
 
 
 			async locationFn() {
-				let res = await uni.getLocation()
-				if (res[1]) {
-					this.myLocation = {
-						latitude: res[1].latitude,
-						longitude: res[1].longitude,
+				let _this = this
+				uni.getLocation({
+					success(res) {
+						_this.myLocation = {
+							latitude: res.latitude,
+							longitude: res.longitude,
+						}
+						_this.loadCarRentalList();
 					}
-					this.loadCarRentalList();
-
-				}
+				})
 			},
 
 			tapSelectType(e) {
@@ -411,10 +269,12 @@
 				};
 				const me = this;
 				var nearCabinetList = [];
-				let {data} = await http_gyq.postApi(config_gyq.API_FLK_CABINET_NEAR_LIST,pData)
+				let {
+					data
+				} = await http_gyq.postApi(config_gyq.API_FLK_CABINET_NEAR_LIST, pData)
 				if (data.code === 200) {
 					nearCabinetList = data.data.cabinetList || [];
-					this.markers = nearCabinetList.map(item=>{
+					this.markers = nearCabinetList.map(item => {
 						return {
 							width: 50,
 							height: 52,
@@ -422,15 +282,15 @@
 							longitude: item.longitude,
 							latitude: item.latitude,
 							iconPath: CABINET_ICON_URLS,
-							label:{
-								content:"21",
-								color:"#0074FF",
-								fontSize:10,
-								bgColor:"#fff",
-								borderRadius:1000,
-								padding:3,
-								anchorX:0,
-								anchorY:-50
+							label: {
+								content: "21",
+								color: "#0074FF",
+								fontSize: 10,
+								bgColor: "#fff",
+								borderRadius: 1000,
+								padding: 3,
+								anchorX: 0,
+								anchorY: -50
 							}
 						}
 					})
@@ -438,7 +298,7 @@
 					me.setData({
 						nearCabinetList: nearCabinetList,
 					});
-				
+
 				} else {
 					common.simpleToast(data.msg);
 				}