| | |
| | | onLoad() { |
| | | const item = uni.getStorageSync('addr'); |
| | | if (item) { |
| | | console.log(item,"============================") |
| | | this.type = 2 |
| | | uni.setNavigationBarTitle({ |
| | | title: '编辑收货地址' |
| | |
| | | this.form.phone = item.phone |
| | | this.form.addr = item.addr |
| | | this.form.areaId = item.areaId |
| | | this.form.areaName = item.areaDetail |
| | | this.form.latitude=item.latitude |
| | | this.form.longitude = item.longitude |
| | | this.form.areaName = (item.provinceName||'') + (item.cityName||'')+(item.districtName||'') |
| | | this.form.isDefault = Number(item.isDefault) |
| | | uni.removeStorageSync('addr'); |
| | | } |