修改我的医生,新增优惠卷过期
This commit is contained in:
@@ -508,7 +508,7 @@ class PatientDoctorService extends BaseService
|
||||
|
||||
// 处理数据
|
||||
if (!empty($result['data'])) {
|
||||
foreach ($result['data'] as $item) {
|
||||
foreach ($result['data'] as &$item) {
|
||||
$data = array();
|
||||
|
||||
// 医生专长
|
||||
@@ -531,7 +531,7 @@ class PatientDoctorService extends BaseService
|
||||
// 职称
|
||||
$data['user_doctor']['doctor_title_name'] = empty($data['user_doctor']['doctor_title']) ? "" : DoctorTitleCode::getMessage($data['user_doctor']['doctor_title']);
|
||||
|
||||
$result['data'][] = $data;
|
||||
$item = $data;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user