作者 何书鹏
1 个管道 的构建 通过 耗费 1 秒

bug修改

... ... @@ -88,6 +88,7 @@ class UserAddress extends Model
// 该地址设为默认,其他地址就设为非默认
if($data['isdefault'] == '1'){
self::where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
$data['isdefault'] = 1;
}
return $this->allowField(true)
->save(array_merge(compact('province_id', 'city_id', 'district_id'), $data));
... ...
... ... @@ -80,6 +80,7 @@ class UserSize extends Model
// 该地址设为默认,其他地址就设为非默认
if($data['isdefault'] == '1'){
$this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
$data['isdefault'] = 1;
}
// 对象转json字符串
if(!empty($data['body_info']) && is_array($data['body_info'])){
... ...