|
@@ -79,13 +79,13 @@ class UserSize extends Model |
|
@@ -79,13 +79,13 @@ class UserSize extends Model |
79
|
empty($data['isdefault']) && $data['isdefault'] = '0';
|
79
|
empty($data['isdefault']) && $data['isdefault'] = '0';
|
80
|
// 该地址设为默认,其他地址就设为非默认
|
80
|
// 该地址设为默认,其他地址就设为非默认
|
81
|
if($data['isdefault'] == '1'){
|
81
|
if($data['isdefault'] == '1'){
|
82
|
- return 1;
|
|
|
83
|
$this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
|
82
|
$this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
|
84
|
}
|
83
|
}
|
85
|
// 对象转json字符串
|
84
|
// 对象转json字符串
|
86
|
if(!empty($data['body_info']) && is_array($data['body_info'])){
|
85
|
if(!empty($data['body_info']) && is_array($data['body_info'])){
|
87
|
$data['body_info'] = json_encode($data['body_info']);
|
86
|
$data['body_info'] = json_encode($data['body_info']);
|
88
|
}
|
87
|
}
|
|
|
88
|
+ return $data;
|
89
|
return $this->allowField(true)->save($data);
|
89
|
return $this->allowField(true)->save($data);
|
90
|
}
|
90
|
}
|
91
|
|
91
|
|