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

1

@@ -77,9 +77,9 @@ class UserSize extends Model @@ -77,9 +77,9 @@ class UserSize extends Model
77 public function edit($data) 77 public function edit($data)
78 { 78 {
79 empty($data['isdefault']) && $data['isdefault'] = '0'; 79 empty($data['isdefault']) && $data['isdefault'] = '0';
80 - return $data['isdefault'];  
81 // 该地址设为默认,其他地址就设为非默认 80 // 该地址设为默认,其他地址就设为非默认
82 - if($data['isdefault'] == '1'){ 81 + if((string)$data['isdefault'] == '1'){
  82 + return 1;
83 $this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']); 83 $this->where('user_id',$this['user_id'])->update(['isdefault'=>'0']);
84 } 84 }
85 // 对象转json字符串 85 // 对象转json字符串