|
@@ -41,6 +41,7 @@ class UserSize extends Model |
|
@@ -41,6 +41,7 @@ class UserSize extends Model |
41
|
if($data['isdefault'] == '1'){
|
41
|
if($data['isdefault'] == '1'){
|
42
|
$this->where('user_id',$user['id'])->update(['isdefault'=>'0']);
|
42
|
$this->where('user_id',$user['id'])->update(['isdefault'=>'0']);
|
43
|
}
|
43
|
}
|
|
|
44
|
+ // 对象转json字符串
|
44
|
if(!empty($data['body_info']) && is_array($data['body_info'])){
|
45
|
if(!empty($data['body_info']) && is_array($data['body_info'])){
|
45
|
$data['body_info'] = json_encode($data['body_info']);
|
46
|
$data['body_info'] = json_encode($data['body_info']);
|
46
|
}
|
47
|
}
|
|
@@ -62,6 +63,7 @@ class UserSize extends Model |
|
@@ -62,6 +63,7 @@ class UserSize extends Model |
62
|
if($data['isdefault'] == '1'){
|
63
|
if($data['isdefault'] == '1'){
|
63
|
$this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
|
64
|
$this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
|
64
|
}
|
65
|
}
|
|
|
66
|
+ // 对象转json字符串
|
65
|
if(!empty($data['body_info']) && is_array($data['body_info'])){
|
67
|
if(!empty($data['body_info']) && is_array($data['body_info'])){
|
66
|
$data['body_info'] = json_encode($data['body_info']);
|
68
|
$data['body_info'] = json_encode($data['body_info']);
|
67
|
}
|
69
|
}
|