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

1

@@ -78,7 +78,7 @@ class UserSize extends Model @@ -78,7 +78,7 @@ class UserSize extends Model
78 { 78 {
79 empty($data['isdefault']) && $data['isdefault'] = '0'; 79 empty($data['isdefault']) && $data['isdefault'] = '0';
80 // 该地址设为默认,其他地址就设为非默认 80 // 该地址设为默认,其他地址就设为非默认
81 - if((string)$data['isdefault'] == '1'){ 81 + if($data['isdefault'] == '1'){
82 return 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 }