getChangedData(); //如果有修改密码 if (isset($changed['password'])) { if ($changed['password']) { $salt = \fast\Random::alnum(); $row->password = \app\common\library\Auth::instance()->getEncryptPassword($changed['password'], $salt); $row->salt = $salt; } else { unset($row->password); } } //email查重 if (isset($changed['mobile'])) { if($changed['mobile']){ $exists = db('coach')->where('mobile', $changed['mobile'])->where('id', '<>', $row->id)->find(); if ($exists) { abort(500,'手机已经被使用'); } } } }); self::beforeInsert(function ($row) { if (isset($row['password'])) { if ($row['password']) { $salt = \fast\Random::alnum(); $row->password = \app\common\library\Auth::instance()->getEncryptPassword($row['password'], $salt); $row->salt = $salt; } else { unset($row->password); } } //mobile查重 if($row['mobile']){ $exists = db('coach')->where('mobile', $row['mobile'])->find(); if ($exists) { abort(500,'手机已经被使用'); } }else{ abort(500,'手机不能为空'); } }); } public function getGenderList() { return ['1' => __('Gender 1'), '0' => __('Gender 0')]; } public function getStatusList() { return ['0' => __('Status 0'), '1' => __('Status 1')]; } public function getGenderTextAttr($value, $data) { $value = $value ? $value : (isset($data['gender']) ? $data['gender'] : ''); $list = $this->getGenderList(); return isset($list[$value]) ? $list[$value] : ''; } public function getPrevtimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['prevtime']) ? $data['prevtime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getLogintimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['logintime']) ? $data['logintime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getJointimeTextAttr($value, $data) { $value = $value ? $value : (isset($data['jointime']) ? $data['jointime'] : ''); return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value; } public function getStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['status']) ? $data['status'] : ''); $list = $this->getStatusList(); return isset($list[$value]) ? $list[$value] : ''; } protected function setPrevtimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } protected function setLogintimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } protected function setJointimeAttr($value) { return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value); } }