增加 血压血糖记录 饮食记录 运动打卡记录

This commit is contained in:
Guoxianpeng
2026-04-16 18:56:08 +08:00
parent fb8ae6878c
commit 363565a4f7
13 changed files with 1429 additions and 27 deletions
@@ -78,4 +78,15 @@ class BloodRecordController extends BaseAdminController
$result = BloodRecordLogic::getRecordsByPatient($params);
return $this->data($result);
}
/**
* @notes 获取血糖趋势图数据
* @return \think\response\Json
*/
public function getBloodSugarTrend()
{
$params = $this->request->get();
$result = BloodRecordLogic::getBloodSugarTrend($params);
return $this->data($result);
}
}