|
@@ -66,7 +66,7 @@
|
|
|
</view>
|
|
|
<text class="clear">{{i18n.addressBook}}</text>
|
|
|
</view>
|
|
|
- <text class="clear">
|
|
|
+ <text class="clear" @click="clear">
|
|
|
{{i18n.empty}}
|
|
|
</text>
|
|
|
</view>
|
|
@@ -102,10 +102,47 @@
|
|
|
detailed: "",
|
|
|
email: "",
|
|
|
companyName: "",
|
|
|
- is_default:0
|
|
|
+ is_default: 0
|
|
|
};
|
|
|
},
|
|
|
+ onLoad(options) {
|
|
|
+ if (options.id) {
|
|
|
+ this.addressId = options.id;
|
|
|
+ this.getAddressDetail(options.id);
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ //回显数据
|
|
|
+ getAddressDetail(id) {
|
|
|
+ uni.$u.http.get(`/api/address/${id}`).then((res) => {
|
|
|
+ console.log(res);
|
|
|
+ this.cityname = res.province_name;
|
|
|
+ this.name = res.name;
|
|
|
+ this.phone = res.mobile;
|
|
|
+ this.detailed = res.address;
|
|
|
+ this.companyName = res.company_name;
|
|
|
+ this.is_default = res.is_default;
|
|
|
+ this.addname = res.country_name;
|
|
|
+ this.email = res.email;
|
|
|
+ this.addid = res.country_id;
|
|
|
+ this.cityid = res.province_id;
|
|
|
+ this.postalCode = res.zip_code;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ clear() {
|
|
|
+ this.phone = ''
|
|
|
+ this.name = ''
|
|
|
+ this.addid = ''
|
|
|
+ this.cityid = ''
|
|
|
+ this.detailed = ''
|
|
|
+ this.companyName = ''
|
|
|
+ this.email = ''
|
|
|
+ this.postalCodee = ''
|
|
|
+ this.is_default = ''
|
|
|
+ this.checkboxValue1 = []
|
|
|
+ this.cityname = ''
|
|
|
+ this.addname = ''
|
|
|
+ },
|
|
|
//确定
|
|
|
submit() {
|
|
|
const obj = {
|
|
@@ -117,10 +154,29 @@
|
|
|
company_name: this.companyName,
|
|
|
email: this.email,
|
|
|
zip_code: this.postalCodee,
|
|
|
- is_default:this.is_default
|
|
|
+ is_default: this.is_default
|
|
|
};
|
|
|
+ if (this.addressId) {
|
|
|
+ uni.$u.http.put(`/api/address/${this.addressId}`, obj).then((res) => {
|
|
|
+ const eventchannel = this.getOpenerEventChannel();
|
|
|
+ eventchannel.emit('bottomadd', res)
|
|
|
+ uni.navigateBack()
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ uni.$u.http.post(`/api/address`, obj).then((res) => {
|
|
|
+ const eventchannel = this.getOpenerEventChannel();
|
|
|
+ eventchannel.emit('bottomadd', res)
|
|
|
+ uni.navigateBack()
|
|
|
+ // console.log(res);
|
|
|
+ // this.$router.back();
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
uni.$u.http.post(`/api/address`, obj).then((res) => {
|
|
|
- console.log(res);
|
|
|
+ const eventchannel = this.getOpenerEventChannel();
|
|
|
+ eventchannel.emit('bottomadd', res)
|
|
|
+ uni.navigateBack()
|
|
|
+ // console.log(res);
|
|
|
// this.$router.back();
|
|
|
});
|
|
|
},
|
|
@@ -148,9 +204,9 @@
|
|
|
},
|
|
|
checkboxChange(n) {
|
|
|
console.log('change', n);
|
|
|
- if(n.length>0){
|
|
|
+ if (n.length > 0) {
|
|
|
this.is_default = 1
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.is_default = 0
|
|
|
}
|
|
|
},
|