正在显示
1 个修改的文件
包含
5 行增加
和
2 行删除
@@ -85,8 +85,11 @@ class UserSize extends Model | @@ -85,8 +85,11 @@ class UserSize extends Model | ||
85 | if(!empty($data['body_info']) && is_array($data['body_info'])){ | 85 | if(!empty($data['body_info']) && is_array($data['body_info'])){ |
86 | $data['body_info'] = json_encode($data['body_info']); | 86 | $data['body_info'] = json_encode($data['body_info']); |
87 | } | 87 | } |
88 | - return $this->allowField(true) | ||
89 | - ->save($data); | 88 | + // 没有默认收货地址,就把该收货地址设为默认 |
89 | + if(!$this->get(['user_id'=>$this['user_id'],'isdefault'=>'1'])){ | ||
90 | + $data['isdefault'] = '1'; | ||
91 | + } | ||
92 | + return $this->allowField(true)->save($data); | ||
90 | } | 93 | } |
91 | 94 | ||
92 | /** | 95 | /** |
-
请 注册 或 登录 后发表评论