修正首页认证状态、新增银行卡
This commit is contained in:
@@ -95,7 +95,7 @@ class IndexService extends BaseService
|
||||
$info['user_name'] = $doctor['user_name'];
|
||||
$info['status'] = $doctor['status'];
|
||||
$info['idcard_status'] = $doctor['idcard_status'];// 实名认证状态(0:未认证 1:认证通过 2:认证失败)
|
||||
$info['iden_auth_status'] = $doctor['idcard_status'];// 身份认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败)
|
||||
$info['iden_auth_status'] = $doctor['iden_auth_status'];// 身份认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败)
|
||||
$info['multi_point_status'] = $doctor['multi_point_status'];// 医生多点执业认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败)
|
||||
$info['is_bind_bank'] = $doctor['is_bind_bank'];// 是否已绑定结算银行卡(0:否 1:是)
|
||||
$info['avatar'] = $doctor['avatar'];
|
||||
|
||||
@@ -73,4 +73,13 @@ class UserDoctorService extends BaseService
|
||||
|
||||
return $doctor_expertise->toArray();
|
||||
}
|
||||
|
||||
// 获取医生银行卡
|
||||
public function getDoctorBankCard(){
|
||||
$user_info = $this->request->getAttribute("userInfo") ?? [];
|
||||
|
||||
$params = array();
|
||||
$params['doctor_id'] = $user_info['client_user_id'];
|
||||
// $doctor_bank_card =
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user