Pārlūkot izejas kodu

修改客服 修改定位报错问题

2687224328@qq.com 1 gadu atpakaļ
vecāks
revīzija
31cfeb48b0

+ 1 - 1
https/request.js

@@ -19,7 +19,7 @@ export default(url, method, params) => { // 传参: 接口url,  method类型
     return new Promise((resolve, reject) => {
         uni.request({
             method: method,
-            url: baseUrl + url,
+            url: url.indexOf('http') !== -1 ? url : baseUrl + url,
             data: method=='GET'?getParamet(params):JSON.stringify(getParamet(params)),
             header: header
         })

+ 9 - 4
pageA/order/order.vue

@@ -381,11 +381,11 @@
 
 <script>
 import wPicker from "@/components/w-picker/w-picker.vue";
-import mixin1 from "@/util/mixin1.js";
+// import mixin1 from "@/util/mixin1.js";
 var unpackTimeId = null;
 var total_micro_second = 0; // 总毫秒数
 export default {
-  mixins: [mixin1],
+  // mixins: [mixin1],
   data() {
     return {
       // countdown:[],
@@ -510,8 +510,7 @@ export default {
       this.show();
     }
 
-    this.area_tree();
-    this.agreement();
+    
 
     // 测试
     let currentTime = 1647065671;
@@ -519,6 +518,12 @@ export default {
     // this.isDiffTime(currentTime, startTime);
     this.randNum = this.random(3, 10);
   },
+  
+  onShow() {
+  	this.area_tree();
+  	this.agreement();
+  },
+  
   methods: {
     goBack() {
       if (getCurrentPages().length == 1) {

+ 1 - 1
pageA/orderList/orderList.vue

@@ -77,7 +77,7 @@
 					<!-- <button open-type="contact" @click.stop="buttonType" style="box-shadow: none;">
 							<text>联系客服</text>
 						</button> -->
-					<button open-type="im" data-im-id='28040772090' @click.stop="buttonType" style="box-shadow: none;">
+					<button open-type="byteHi" data-im-id='28040772090' @click.stop="buttonType" style="box-shadow: none;">
 						<text>联系客服</text>
 					</button>
 				</view>

+ 1 - 1
pages/flow/flow.vue

@@ -11,7 +11,7 @@
 			<!-- <button open-type="contact"  class="douyinbutton" v-if="platformType==2&&mixin_type=='TOUTIAO'">
 				
 			</button> -->
-			<button open-type="im" data-im-id='28040772090' class="douyinbutton" v-if="platformType==2&&mixin_type=='TOUTIAO'">
+			<button open-type="byteHi" data-im-id='28040772090' class="douyinbutton" v-if="platformType==2&&mixin_type=='TOUTIAO'">
 				
 			</button>
 		</view> 

+ 5 - 0
pages/flowDetails/flowDetails.vue

@@ -317,8 +317,13 @@
 			if (option.orderId) {
 				this.orderId=option.orderId
 			}
+			
+		},
+		
+		onShow() {
 			this.area_tree()
 		},
+		
 		components: {
 			wPicker
 		},

+ 87 - 51
pages/index/index.vue

@@ -73,8 +73,7 @@
         <view class="li">
           <view class="buttonType">
             <button
-              open-type="im"
-              data-im-id="28040772090"
+              open-type="byteHi"
               v-if="mixin_type == 'TOUTIAO'"
               style="box-shadow: none"
             >
@@ -533,6 +532,8 @@
 <script>
 import wLoad from "@/components/w-load/w-load.vue";
 import wMessageInput from "@/components/w-message-input/w-message-input.vue";
+import http from "@/https/request.js"
+import { isString } from "util"
 export default {
   data() {
     return {
@@ -548,7 +549,7 @@ export default {
         city_id: "city_id", //地区id 'city_id'全部
         exclude_num: [], //排除 复选 值
         is_activity: 0, //是否是优惠号码
-        keyword: ["1", "", "", "", "", "", "", "", "", "", ""], //搜索内容,模糊就是字符串,精准就是数组
+        keyword: "", //["1", "", "", "", "", "", "", "", "", "", ""], //搜索内容,模糊就是字符串,精准就是数组
         limit: 20,
         network: "",
         num_max: "", //数字较多,传数字
@@ -558,7 +559,7 @@ export default {
         rule_name: "", //规律名,AAAA什么的
         rule_position: "tail", //规律位置,middle中间,tail尾部
         search_last: 1, //0,1是否搜索尾部
-        search_type: "precise", //fuzzy模糊,precise精准
+        search_type: "fuzzy", //fuzzy模糊,precise精准
         sort: "", //price_asc价格从低到高,price_desc价格从高到低
         is_offer: 0, //是否为特价号
       },
@@ -569,7 +570,7 @@ export default {
       orderNumArrTpye: false, //快捷购买显示隐藏
       wx: false, //微信公众号二维码展示
       searchChecked: true, //是否选中尾号
-      keyword: false, //模糊和精确切换   true为模糊查询 false为精确查询
+      keyword: true, //模糊和精确切换   true为模糊查询 false为精确查询
       focus_index: -1,
       status: "loadmore",
       boxList: [], //数量
@@ -1276,52 +1277,87 @@ export default {
     // 根据经纬度查询城市
     loAcquire(longitude, latitude) {
       let this_ = this;
-      this.myAmapFun.reverseGeocoder({
-        location: {
-          latitude: latitude,
-          longitude: longitude,
-        },
-        success: function (res) {
-          console.log("解析地址成功");
-          console.log(res);
-          console.log({
-            province: res.result.address_component.province,
-            city: res.result.address_component.city,
-            district: res.result.address_component.district,
-          });
-          uni.setStorage({
-            key: "address",
-            data: JSON.stringify({
-              district: res.result.address_component.district,
-              city: res.result.address_component.city,
-              province: res.result.address_component.province,
-            }),
-          });
-          // 根据名称筛选id
-          this_.cityId(res.result.address_component.city);
-          // 从本地缓存里面获取数据
-          // let _this = this
-          // uni.getStorage({
-          // 	//key值为custom
-          // 	key: `address`,
-          // 	success: function(res) {
-          // 		_this.active = [...res.data]; //这里也可以不使用es6的扩展运算符
-          // 		console.log(_this.active, '_this.active');
-          // 	},
-          // })
-        },
-        fail: function (res) {
-          uni.showToast({
-            title: "定位失败",
-            duration: 2000,
-            icon: "none",
-          });
-          console.log(res);
-        },
-        complete: function (res) {
-          console.log(res);
-        },
-      });
+	  
+	  http('https://restapi.amap.com/v3/geocode/regeo',"GET",{
+	  					key: "08dceab59cbce678d07e89924e376f53",
+	  					location: longitude + ',' + latitude,
+	  					output: "JSON"  
+	  				})
+	  				.then(res=>{
+	  					console.log(res)
+	  					if(res.statusCode == 200){
+	  						if(res.data.status == 1){
+	  							console.log({
+	  											province:res.data.regeocode.addressComponent.province,
+	  											city:res.data.regeocode.addressComponent.city,
+	  											district:res.data.regeocode.addressComponent.district,
+	  										});
+	  							let province = res.data.regeocode.addressComponent.province;
+	  							let city = res.data.regeocode.addressComponent.city;
+	  							let district = res.data.regeocode.addressComponent.district;
+	  							if(!isString(city)){
+	  								city = province;
+	  							}
+	  							uni.setStorage({
+	  										key: 'address',
+	  										data: JSON.stringify({
+	  											district:district,
+	  											city:city,
+	  											province:province,
+	  										})
+	  									});
+	  							this_.cityId(city)
+	  						}
+	  					}
+	  					
+	  				})
+	  
+      // this.myAmapFun.reverseGeocoder({
+      //   location: {
+      //     latitude: latitude,
+      //     longitude: longitude,
+      //   },
+      //   success: function (res) {
+      //     console.log("解析地址成功");
+      //     console.log(res);
+      //     console.log({
+      //       province: res.result.address_component.province,
+      //       city: res.result.address_component.city,
+      //       district: res.result.address_component.district,
+      //     });
+      //     uni.setStorage({
+      //       key: "address",
+      //       data: JSON.stringify({
+      //         district: res.result.address_component.district,
+      //         city: res.result.address_component.city,
+      //         province: res.result.address_component.province,
+      //       }),
+      //     });
+      //     // 根据名称筛选id
+      //     this_.cityId(res.result.address_component.city);
+      //     // 从本地缓存里面获取数据
+      //     // let _this = this
+      //     // uni.getStorage({
+      //     // 	//key值为custom
+      //     // 	key: `address`,
+      //     // 	success: function(res) {
+      //     // 		_this.active = [...res.data]; //这里也可以不使用es6的扩展运算符
+      //     // 		console.log(_this.active, '_this.active');
+      //     // 	},
+      //     // })
+      //   },
+      //   fail: function (res) {
+      //     uni.showToast({
+      //       title: "定位失败",
+      //       duration: 2000,
+      //       icon: "none",
+      //     });
+      //     console.log(res);
+      //   },
+      //   complete: function (res) {
+      //     console.log(res);
+      //   },
+      // });
     },
     // 根据名称筛选id
     cityId(val) {

+ 1 - 1
pages/payment/payment.vue

@@ -37,7 +37,7 @@
 						<text>客服</text>
 					</button> -->
               <button
-                open-type="im"
+                open-type="byteHi"
                 data-im-id="28040772090"
                 style="box-shadow: none"
               >

BIN
static/favicon.ico


BIN
static/img/tapimg3.png