uni-app调用微信收货地址的原生界面,并返回用户填写的地址信息到上一个页面

时间:2021-06-25 17:05:07   收藏:0   阅读:0
// 获取用户收货地址。调起用户编辑收货地址原生界面,并在编辑完成后返回用户选择的地址
    chooseAddr(){
        const that = this
        uni.chooseAddress({
            success(res){
            that.inputData.ToAddress = res.provinceName + res.cityName;     // 收件地址
            that.inputData.addrDetail = res.countyName+res.detailInfo;     // 详细地址
            that.inputData.Recipient = res.userName;                      // 收货人
            that.inputData.phoneNumber = res.telNumber;                    // 联系电话            
        }
    })        

注意:我这里的that.inputtData.xxx 是我根据我的需求要返回给上一个页面展示并进行保存的

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!