From 8ea19a6bb34daab1410f6186992a4c1e90299c92 Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Wed, 14 Sep 2022 08:54:44 +0800
Subject: [PATCH] 服务器配置

---
 leafletMapOur/loginMap/js/vueMain.js |   21 ++++++---------------
 1 files changed, 6 insertions(+), 15 deletions(-)

diff --git a/leafletMapOur/loginMap/js/vueMain.js b/leafletMapOur/loginMap/js/vueMain.js
index faf0089..1e2465f 100644
--- a/leafletMapOur/loginMap/js/vueMain.js
+++ b/leafletMapOur/loginMap/js/vueMain.js
@@ -23,11 +23,13 @@
         popupDisplay: "none",
 
         regionName: '',
-        byValue: ''
     },
     methods: {
         getLocalPoliceStation () {
-            this.regionName = this.byValue
+
+            uni.postMessage({
+                data: this.regionName
+            })
 
         },
         getDataList () {
@@ -63,7 +65,7 @@
         beginMap (map, data) {
             var that = this,
                 center = [data[0].wd, data[0].jd],
-                url = `http://223.82.109.183:2082/api/alarm/alarm/APP-getAlarm?id=${data[0].id}`
+                url = `http://106.225.193.35:83/api/alarm/alarm/APP-getAlarm?id=${data[0].id}`
             // url = `http://localhost:89/alarm/alarm/APP-getAlarm?id=${data[0].id}`;
             this.nowPosition = center
 
@@ -121,7 +123,7 @@
             // 定位成功之后调用的方法
             function showPosition (position) {
 
-                that.byValue = position.district || position.city
+                that.regionName = position.district || position.city
 
                 that.lat = position.lat //
                 that.lng = position.lng //火星坐标 //TODO 实现业务代码逻辑 
@@ -170,17 +172,6 @@
 
     },
     created () {
-        var that = this
-        document.addEventListener('UniAppJSBridgeReady', function (e) {
-            uni.getEnv(function (res) {
-                console.log('当前环境:' + JSON.stringify(res))
-            })
-
-            // 向uniapp底座发送消息
-            uni.postMessage({
-                data: that.regionName
-            })
-        })
     },
     mounted () {
         this.getDataList()

--
Gitblit v1.9.3