fix[litemall-wx,litemall-wx-apidb]: 下单时没有送货地址,添加新地址成功,但是没有显示。

This commit is contained in:
Junling Bu
2018-05-11 16:47:27 +08:00
parent e265a75423
commit 7b5fffd610
2 changed files with 6 additions and 1 deletions

View File

@@ -153,7 +153,7 @@ public class WxAddressController {
address.setUserId(userId);
addressService.update(address);
}
return ResponseUtil.ok();
return ResponseUtil.ok(address.getId());
}
/**

View File

@@ -298,6 +298,11 @@ Page({
isDefault: address.isDefault,
}, 'POST').then(function (res) {
if (res.errno === 0) {
try {
wx.setStorageSync('addressId', res.data);
} catch (e) {
}
wx.navigateBack();
}
});