修改密码
/**
* 修改密码
*/
public
function setpass()
{
$type = request()->input('type');// 1 密码 2支付密码
$phone = request()->input('phone');
$code = request()->input('code');
$pass = request()->input('pass', 123456);
$repass = request()->input('repass', 123456);
if (!$type) {
return $this->error('修改类型');
}
if (!$pass) {
return $this->error('请输入密码');
}
if (!$repass) {
return $this->error('请输入确认密码');
}
if ($pass != $repass) {
return $this->error('两个密码不一致');
}
$nums = (array)Db::table('code')->where(array('phone' => $phone, 'status' => 0))->orderByDesc('time')->first();
if ($nums) {
if ($nums['code'] != $code) {
return $this->error('验证码不正确');
} else {
Db::table('code')->where(array('id' => $nums['id']))->update(['status' => 1]);
}
} else {
return $this->error('请先发送验证码');
}
if ($type == '1') {
$info = Db::table('member')->where(array('id' => $this->user_id))->update(['pass' => MD5($pass . $this->MD5)]);
} else {
$info = Db::table('member')->where(array('id' => $this->user_id))->update(['pay_pass' => MD5($pass . $this->MD5)]);
}
if ($info !== false) {
return $this->success('ok');
} else {
return $this->error('error');
}
}