Browse Source

fix(api): 修改获取RIS配置的api 端点

dengdx 1 month ago
parent
commit
09397aaffd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/API/patient/risActions.ts

+ 1 - 1
src/API/patient/risActions.ts

@@ -137,7 +137,7 @@ export interface StandardApiResponse {
 export const getRisConfig = async (): Promise<RisConfigResponse> => {
   try {
     console.log('正在获取RIS配置...');
-    const response = await axiosInstance.get('/auth/study/ris');
+    const response = await axiosInstance.get('/auth/study/ris/config');
     
     if (response.data.code !== '0x000000') {
       console.error('获取RIS配置失败', response.data.description);