From 8b1b12dce8c02b6983caa54c8e47eb9936db25ce Mon Sep 17 00:00:00 2001
From: wangxiaoshuang <825034831@qq.com>
Date: Wed, 3 Apr 2024 10:22:35 +0800
Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=88=97=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/trials.js | 9 +++++++++
src/views/trials/trials-list/index.vue | 28 +++++++++++++++++---------
2 files changed, 27 insertions(+), 10 deletions(-)
diff --git a/src/api/trials.js b/src/api/trials.js
index 30408ee..f2fa1a6 100644
--- a/src/api/trials.js
+++ b/src/api/trials.js
@@ -3515,3 +3515,12 @@ export function addOrUpdateTrialHir(param) {
data: param
})
}
+
+// 获取项目列表项目
+export function getTrialListHir(param) {
+ return request({
+ url: `/Patient/getTrialList`,
+ method: 'post',
+ data: param
+ })
+}
diff --git a/src/views/trials/trials-list/index.vue b/src/views/trials/trials-list/index.vue
index 5e299dc..2d04507 100644
--- a/src/views/trials/trials-list/index.vue
+++ b/src/views/trials/trials-list/index.vue
@@ -6,15 +6,15 @@
@@ -92,13 +92,19 @@
height="100"
@sort-change="handleSortChange"
>
-
+
+
+ >
+
+ {{
+ item.labl
+ }}
+
+
{
Asc: false,
SortField: "",
SponsorName: "",
+ trialType: null,
};
};
export default {
@@ -404,7 +412,7 @@ export default {
// 获取项目列表信息
getList() {
this.listLoading = true;
- getTrialToBeDoneList(this.searchData)
+ getTrialListHir(this.searchData)
.then((res) => {
this.list = res.Result.CurrentPageData;
this.total = res.Result.TotalCount;