|
@@ -13,7 +13,7 @@
|
|
|
</view>
|
|
|
<view class="content-body">
|
|
|
<view class="store-image flex flex_column justify_center align_center">
|
|
|
- <u-image :src="pageInfo.receiveAddressVO.headerImageList? pageInfo.receiveAddressVO.headerImageList[0]:'/static/index/def_home_shop.png'" width="172" height="172" ></u-image>
|
|
|
+ <u-image :src="pageInfo.reverseReceiveAddress.headerImageList? pageInfo.reverseReceiveAddress.headerImageList[0]:'/static/index/def_home_shop.png'" width="172" height="172" ></u-image>
|
|
|
<text v-if="isHasRider.haveBindRider && pageInfo.name">{{pageInfo.name}}</text>
|
|
|
<text v-else>{{mobile}}</text>
|
|
|
</view>
|
|
@@ -35,7 +35,7 @@
|
|
|
<text>通信地址</text>
|
|
|
</view>
|
|
|
<view class="list-item-right flex_1">
|
|
|
- <u-input class="flex_1" :custom-style="inputClass" v-model="reverseReceiveAddress.receiveAreasName" @click="selectAddress" :disabled="true" placeholder="请选择通信地址" placeholder-style="color:'#bbb';font-size:18px"/>
|
|
|
+ <u-input class="flex_1" :custom-style="inputClass" v-model="reverseReceiveAddress.locationAddress" @click="selectAddress" :disabled="true" placeholder="请选择通信地址" placeholder-style="color:'#bbb';font-size:18px"/>
|
|
|
<u-icon class="back-img" name="arrow-right" color="#9DA8B5" @click="selectAddress"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -170,7 +170,7 @@
|
|
|
},
|
|
|
reverseReceiveAddress: {
|
|
|
receiveAddress: '',// 详细地址
|
|
|
- receiveAreasName:'',
|
|
|
+ locationAddress:'',
|
|
|
lat:'',
|
|
|
lng:''
|
|
|
},
|
|
@@ -297,7 +297,7 @@
|
|
|
this.getArea(res.address)
|
|
|
this.reverseReceiveAddress.lat=res.latitude
|
|
|
this.reverseReceiveAddress.lng=res.longitude
|
|
|
- this.reverseReceiveAddress.receiveAreasName= res.address
|
|
|
+ this.reverseReceiveAddress.locationAddress= res.address
|
|
|
|
|
|
}
|
|
|
}
|
|
@@ -443,7 +443,7 @@
|
|
|
}
|
|
|
const params=this.form
|
|
|
params.contactMobile=this.form.mobile?this.form.mobile:''
|
|
|
- params.contactAddress=this.reverseReceiveAddress.receiveAreasName?this.reverseReceiveAddress.receiveAreasName:''
|
|
|
+ params.contactAddress=this.reverseReceiveAddress.locationAddress?this.reverseReceiveAddress.locationAddress:''
|
|
|
params.houseAddress=this.reverseReceiveAddress.receiveAddress?this.reverseReceiveAddress.receiveAddress:''
|
|
|
params.lat=this.reverseReceiveAddress.lat?this.reverseReceiveAddress.lat:''
|
|
|
params.lng=this.reverseReceiveAddress.lng?this.reverseReceiveAddress.lng:''
|