|
@@ -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) {
|