ming hace 4 años
padre
commit
ee82f8fad0

+ 1 - 1
main.js

@@ -9,7 +9,7 @@ import {myRequest} from './util/api.js'
 // 引入colorui组件
 import cuCustom from 'colorui/components/cu-custom.vue'
 Vue.component('cu-custom',cuCustom)
-
+// Cookies.get('name')
 
 Vue.config.productionTip = false
 

+ 18 - 1
manifest.json

@@ -56,6 +56,16 @@
                 }
             },
             "icons" : {
+                "h5" : {
+                    "sdkConfigs" : {
+                        "maps" : {
+                            "qqmap" : {
+                                // 腾讯地图秘钥(key)https://lbs.qq.com/dev/console/key/manage
+                                "key" : "KP4BZ-YGKCQ-S465Z-GHHEL-BVINJ-YUBLP"
+                            }
+                        }
+                    }
+                },
                 "android" : {
                     "hdpi" : "unpackage/res/icons/72x72.png",
                     "xhdpi" : "unpackage/res/icons/96x96.png",
@@ -125,6 +135,13 @@
         "devServer" : {
             "https" : false
         },
-        "template" : ""
+        "template" : "",
+        "sdkConfigs" : {
+            "maps" : {
+                "qqmap" : {
+                    "key" : "KP4BZ-YGKCQ-S465Z-GHHEL-BVINJ-YUBLP"
+                }
+            }
+        }
     }
 }

+ 4 - 2
pages/index/index.vue

@@ -353,8 +353,10 @@
 					const res = await this.$myRequest({
 						url: 'Com/getPageAuthorization',
 						data: params
-					})
-					if (res.data.flag == 3000) {
+					})
+					
+					if (res.data.flag == 3000) {
+
 						 // alert("3000授权失败,");
 						window.location.href = 'https://qhome.usky.cn/index.html#/';
 					}

+ 11 - 7
pages/processedDetail/processedDetail.vue

@@ -200,13 +200,17 @@
 			},
 			mapLocation(){
 				console.log(this.detailMessage)
-				uni.openLocation({
-					latitude: parseInt(this.detailMessage.latitude),
-					longitude: parseInt(this.detailMessage.longitude),
-					success: function() {
-						console.log('success');
-					}
-				});
+				
+				
+				window.location.href =  'http://apis.map.qq.com/uri/v1/marker?marker=coord:'+parseFloat(this.detailMessage.latitude)+','+parseFloat(this.detailMessage.longitude)+''
+			
+				// uni.openLocation({
+				// 	latitude: parseInt(this.detailMessage.latitude),
+				// 	longitude: parseInt(this.detailMessage.longitude),
+				// 	success: function() {
+				// 		console.log('success');
+				// 	}
+				// });
 			},
 	
 			// 页面跳转

+ 16 - 2
pages/siteAdd/siteAdd.vue

@@ -106,10 +106,24 @@
 				uni.setNavigationBarTitle({
 					title: '站点新增'
 				});
-			}
+			}
+			 // this.getLocation()
 		},
 
-		methods: {
+		methods: {
+			
+			getLocation(){
+				alert(1)
+				uni.getLocation({
+					
+				    type: 'wgs84',
+				    success: function (res) {
+						alert(2)
+				        console.log('当前位置的经度:' + res.longitude);
+				        console.log('当前位置的纬度:' + res.latitude);
+				    }
+				});
+			},
 
 			//新增验证并提交
 			addSubmit() {

+ 48 - 42
pages/siteManage/siteManage.vue

@@ -5,8 +5,7 @@
 			<view class="cu-bar search bg-gray filter-section">
 				<view class="search-form round bg-white">
 					<text class="cuIcon-search"></text>
-					<input class=""  type="text" placeholder="请输入站点名称"
-					 confirm-type="search" v-model="siteName"></input>
+					<input class="" type="text" placeholder="请输入站点名称" confirm-type="search" v-model="siteName"></input>
 				</view>
 				<view class="action">
 					<button class="cu-btn bg-blue round" @click="searchSiteList">查询</button>
@@ -38,7 +37,7 @@
 				</view>
 			</view>
 			<view v-if="!siteList.length&&siteListRes==1" class="text-center margin-top"> 暂无数据</view>
-		</view>
+		</view>
 		<!-- 站点列表end -->
 
 		<!-- 新增按钮start -->
@@ -49,7 +48,7 @@
 	</view>
 
 </template>
-
+<script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
 <script>
 	export default {
 		data() {
@@ -64,26 +63,26 @@
 			};
 		},
 
-		onLoad: function(option) {
-			
+		onLoad: function(option) {
+
 			//站点列表渲染
-			this.getSiteList()
-			
-		},
-		
+			this.getSiteList()
+
+		},
+
 		methods: {
 			//筛选
 			searchSiteList() {
 				this.getSiteList({
 					"siteName": this.siteName
 				})
-			},
-			
-			//编辑
-			editItem(item) {
-				uni.navigateTo({
-					url: '/pages/siteAdd/siteAdd?id=' + item.id + '',
-				});
+			},
+
+			//编辑
+			editItem(item) {
+				uni.navigateTo({
+					url: '/pages/siteAdd/siteAdd?id=' + item.id + '',
+				});
 			},
 
 			//删除
@@ -101,38 +100,45 @@
 						}
 					}.bind(this)
 				});
-			},
-			
-			// 打开导航
+			},
+
+			// 打开导航
 			mapLocation(item) {
-				uni.openLocation({
-					latitude: parseFloat(item.latitude),
-					longitude: parseFloat(item.longitude),
-					success: function() {
-						// console.log('success');
-					}
-				});
+				
+				//h5地图导航
+				window.location.href =  'http://apis.map.qq.com/uri/v1/marker?marker=coord:'+parseFloat(item.latitude)+','+parseFloat(item.longitude)+'' 
+
+				// uni.openLocation({
+				// 	latitude: parseFloat(item.latitude),
+				// 	longitude: parseFloat(item.longitude),
+				// 	success: function() {
+				// 		// console.log('success');
+				// 	}
+				// });
 			},
 
+
+
+
 			async setDelSite(ming = {}) {
 				const res = await this.$myRequest({
 					url: 'SiteManagement/setDelSite',
 					data: ming
 				})
 				if (!res.data.flag) {
-					uni.showToast({
-						title: "删除失败",
-						icon: "none"
+					uni.showToast({
+						title: "删除失败",
+						icon: "none"
+					});
+				} else {
+					uni.showToast({
+						title: "删除成功",
 					});
-				}else{
-					uni.showToast({
-						title: "删除成功",
-					});
-					setTimeout(() => {
-						this.getSiteList()
-					}, 1000);
+					setTimeout(() => {
+						this.getSiteList()
+					}, 1000);
 				}
-				
+
 			},
 
 			async getSiteList(ming = {}) {
@@ -145,7 +151,7 @@
 				this.siteList = res.data.data
 				console.log(res.data.data);
 			},
-			
+
 			// 新增跳转
 			goAddPage() {
 				uni.navigateTo({
@@ -154,12 +160,12 @@
 					fail: () => {},
 					complete: () => {}
 				});
-			},
-			
+			},
+
 			//跳转到设备管理页面
 			goDeviceManage(item) {
 				uni.navigateTo({
-					url: '/pages/deviceManage/deviceManage?siteId='+item.id+'',
+					url: '/pages/deviceManage/deviceManage?siteId=' + item.id + '',
 					success: res => {},
 					fail: () => {},
 					complete: () => {}

+ 10 - 8
pages/unprocessDetail/unprocessDetail.vue

@@ -298,14 +298,16 @@
 				});
 			},
 
-			mapLocation() {
-				uni.openLocation({
-					latitude: parseInt(this.detailMessage.latitude),
-					longitude: parseInt(this.detailMessage.longitude),
-					success: function() {
-						console.log('success');
-					}
-				});
+			mapLocation() {
+				
+				window.location.href =  'http://apis.map.qq.com/uri/v1/marker?marker=coord:'+parseFloat(this.detailMessage.latitude)+','+parseFloat(this.detailMessage.longitude)+''
+				// uni.openLocation({
+				// 	latitude: parseFloat(this.detailMessage.latitude),
+				// 	longitude: parseFloat(this.detailMessage.longitude),
+				// 	success: function() {
+				// 		console.log('success');
+				// 	}
+				// });
 			},
 
 			// 页面跳转

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
unpackage/dist/dev/app-plus/app-config-service.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
unpackage/dist/dev/app-plus/app-service.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 19 - 17
unpackage/dist/dev/app-plus/app-view.js


+ 2 - 2
util/api.js

@@ -1,5 +1,5 @@
-// const BASE_URL = 'https://iot.usky.cn/USKYOF/USKYOF.php/Home/'
-const BASE_URL='https://qhome.usky.cn/USKYOF/USKYOF.php/Home/'
+const BASE_URL = 'https://iot.usky.cn/USKYOF/USKYOF.php/Home/'
+// const BASE_URL='https://qhome.usky.cn/USKYOF/USKYOF.php/Home/'
 // 同时发送异步代码的次数,防止一次点击中有多次请求,用于处理
 let ajaxTimes = 0;
 

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio