Commit 6663e02f by 杨树贤

地址默认问题

parent 9e6b8999
Showing with 3 additions and 1 deletions
...@@ -24,7 +24,9 @@ class UserAddressService ...@@ -24,7 +24,9 @@ class UserAddressService
if (!$hasDefaultAddress) { if (!$hasDefaultAddress) {
$address['is_default'] = 1; $address['is_default'] = 1;
} else { } else {
$address['is_default'] = 0; if ($address['is_default'] == 1) {
UserAddressModel::where('user_id', $user->id)->update(['is_default' => 0]);
}
} }
return UserAddressModel::insertGetId($address); return UserAddressModel::insertGetId($address);
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment