Browse Source

修改导航显示名称

修改我的地址页面定位只使用省市区
master
喵喵喵1234 1 year ago
parent
commit
1fb2110d4c
  1. 15
      pages/Address/edit.vue
  2. 1
      pages/Index/index.vue
  3. 10
      pages/Service/index.vue
  4. 2
      utils/functions.js

15
pages/Address/edit.vue

@ -292,7 +292,20 @@ export default {
success: (res) => {
that.lat = res.latitude;
that.lng = res.longitude;
that.model.address.area = res.address;
console.log(res)
// that.model.address.area = res.address;
api.getloction({activedeta:{
city:res.address,
address:res.name
}}).then(data => {
let address = data.address_components;
console.log('address',address)
// that.address.province = address.province;
// that.address.city = address.city;
// that.address.district = address.district;
that.model.address.area = address.province+address.city+address.district;
console.log()
});
},
fail: (err) => {
console.log(err)

1
pages/Index/index.vue

@ -50,6 +50,7 @@
</view>
</view>
</uv-popup>
<uv-parse content="<div></div>"></uv-parse>
</template>
<script>

10
pages/Service/index.vue

@ -100,7 +100,7 @@
<u-text :text="mapData.address" color="#AFB5BE" size="28"></u-text>
</view>
<view class="button" style="width:50rpx;height:50rpx;">
<u-image mode="widthFix" width="=50" height="50" :src="staticImage.position" @click="callPostion"></u-image>
<u-image mode="widthFix" width="=50" height="50" :src="staticImage.position" @click="callPosition"></u-image>
</view>
</view>
<view class="pop-add"></view>
@ -137,7 +137,7 @@
<view class="icon" style="margin-right:20rpx;">
<u-image mode="widthFix" width="32" height="32" :src="staticImage.listPosition"></u-image>
</view>
<view class="value col " @click="callLocal(item.lat,item.lng)">
<view class="value col " @click="callLocal(item.lat,item.lng,item.name)">
<u-text :text="item.address" color="#AFB5BE" size="28" custom-style="display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; "></u-text>
</view>
</view>
@ -506,7 +506,7 @@ export default {
afterCreateMap(){
this.getServiceList(true);
},
callPostion(){
callPosition(){
const latitude=parseFloat(this.mapData.lat);
const longitude=parseFloat(this.mapData.lng);
uni.openLocation({
@ -515,13 +515,13 @@ export default {
name:this.mapData.name,
})
},
callLocal(lat,lng){
callLocal(lat,lng,name = ''){
const latitude=parseFloat(lat);
const longitude=parseFloat(lng);
uni.openLocation({
latitude:latitude,
longitude:longitude,
name:this.mapData.name,
name:name,
})
},
callPhone(phone){

2
utils/functions.js

@ -76,7 +76,7 @@ const api = {
address: details.activedeta.city+details.activedeta.address, //地址参数,例:固定地址,address: '北京市海淀区彩和坊路海淀西大街74号'
success: function(res) {//成功后的回调
console.log(res);
relove(res.result.location)
relove(res.result)
},
fail: function(error) {
console.error(error);

Loading…
Cancel
Save