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

bug修改

... ... @@ -516,7 +516,6 @@ class User extends Api
{
$post = $this->request->post();
$model = UserSize::detail($this->user['id'], $post['user_size_id']);
$this->success(json_encode($model->edit($post)));
if(empty($model)){
$this->error(__('尺寸信息不存在'));
}
... ...
... ... @@ -85,11 +85,6 @@ class UserSize extends Model
if(!empty($data['body_info']) && is_array($data['body_info'])){
$data['body_info'] = json_encode($data['body_info']);
}
// 没有默认收货地址,就把该收货地址设为默认
if(!$this->get(['user_id'=>$this['user_id'],'isdefault'=>'1'])){
$data['isdefault'] = '1';
}
return $data;
return $this->allowField(true)->save($data);
}
... ...