修正验证码不能以0开头的问题

This commit is contained in:
2023-02-24 10:37:29 +08:00
parent e6afaf0913
commit b8dd0463a2
6 changed files with 59 additions and 4 deletions
+18
View File
@@ -245,8 +245,26 @@ class DoctorAccountService extends BaseService
return success($order_inquiry);
}
// 获取医生提现记录列表
public function getDoctorWithdrawalRecordList(): array
{
$user_info = $this->request->getAttribute("userInfo") ?? [];
$year = $this->request->input('year');
// 获取当年开始时间
$start_date = $year.'-1-1 00:00:00';
// 获取当年结束时间
$end_date = $year.'-12-31 23:59:59';
$created_at_params = [$start_date, $end_date];
$params = array();
$params['doctor_id'] = $user_info['client_user_id'];
}
/**
* 获取医生账户余额