diff --git a/src/api/trials.js b/src/api/trials.js index 717ce7c0..c7ea66b9 100644 --- a/src/api/trials.js +++ b/src/api/trials.js @@ -4466,4 +4466,11 @@ export function updateReadModuleClinicalData(data) { method: 'post', data }) +} + +export function getTrialUnreadVisitList(trialId) { + return request({ + url: `/DownloadAndUpload/getTrialUnreadVisitList?trialId=${trialId}`, + method: 'get' + }) } \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 368b8e35..1dbe29da 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -50,11 +50,11 @@ export const constantRoutes = [ component: () => import('@/views/login/index'), hidden: true }, - // { - // path: '/test', - // component: () => import('@/views/test/index'), - // hidden: true - // }, + { + path: '/test', + component: () => import('@/views/test/index'), + hidden: true + }, { path: '/resetpassword', component: () => import('@/views/forgetpassword/index'), diff --git a/src/views/test/index.vue b/src/views/test/index.vue index 301b347c..c7a003da 100644 --- a/src/views/test/index.vue +++ b/src/views/test/index.vue @@ -1,25 +1,138 @@ \ No newline at end of file