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