Fix Bug #562: fallback修复

This commit is contained in:
2026-05-27 02:57:18 +08:00
parent 028986a187
commit f91c709d72
5 changed files with 173 additions and 58 deletions

View File

@@ -0,0 +1,13 @@
import request from '@/utils/request';
/**
* 获取待写病历(分页)
* @param {Object} params { pageNum, pageSize }
*/
export function getPendingMedicalRecordsApi(params) {
return request({
url: '/outpatient/medical-records/pending',
method: 'get',
params,
});
}