From 06883d2e861e6991c9647d752fe561ffce6eab9f Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 22 Mar 2024 17:53:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8F=8A=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TrialsTab/index.vue | 17 +- .../components/uploadClinicalData.vue | 930 ++++++++++-------- .../institutions/components/Hospitals.vue | 5 +- src/views/email-recompose/index.vue | 13 +- .../components/VolumeReward.vue | 2 +- src/views/forgetpassword/index.vue | 8 +- src/views/login/index.vue | 290 +++--- .../system/dicomAE/components/edit-dicom.vue | 100 ++ src/views/system/dicomAE/index.vue | 162 ++- src/views/system/notice/index.vue | 8 +- .../trials-layout/components/trialsNavbar.vue | 183 ++-- .../hirVisit/components/edit-study-list.vue | 260 +++++ .../trials/trials-panel/hirVisit/index.vue | 281 ++++++ .../trials-panel/readManagenent/index.vue | 230 +++++ .../trials-panel/reading/read-task/index.vue | 909 +++++++++-------- .../reading/reading-task/index.vue | 554 +++++------ .../reading/reread-task/index.vue | 868 +++++++++------- .../study/components/edit-visit.vue | 114 +++ src/views/trials/trials-panel/study/index.vue | 668 ++++++------- .../subject-list/components/add-subject.vue | 87 +- .../subject/subject-list/index.vue | 24 +- 21 files changed, 3638 insertions(+), 2075 deletions(-) create mode 100644 src/views/system/dicomAE/components/edit-dicom.vue create mode 100644 src/views/trials/trials-panel/hirVisit/components/edit-study-list.vue create mode 100644 src/views/trials/trials-panel/hirVisit/index.vue create mode 100644 src/views/trials/trials-panel/readManagenent/index.vue create mode 100644 src/views/trials/trials-panel/study/components/edit-visit.vue diff --git a/src/components/TrialsTab/index.vue b/src/components/TrialsTab/index.vue index 09e8302..41ef34c 100644 --- a/src/components/TrialsTab/index.vue +++ b/src/components/TrialsTab/index.vue @@ -4,14 +4,15 @@ - + diff --git a/src/components/clinicalDataQuestions/components/uploadClinicalData.vue b/src/components/clinicalDataQuestions/components/uploadClinicalData.vue index a523a6c..3ad6555 100644 --- a/src/components/clinicalDataQuestions/components/uploadClinicalData.vue +++ b/src/components/clinicalDataQuestions/components/uploadClinicalData.vue @@ -1,302 +1,335 @@ diff --git a/src/views/system/dicomAE/components/edit-dicom.vue b/src/views/system/dicomAE/components/edit-dicom.vue new file mode 100644 index 0000000..94c530d --- /dev/null +++ b/src/views/system/dicomAE/components/edit-dicom.vue @@ -0,0 +1,100 @@ + + \ No newline at end of file diff --git a/src/views/system/dicomAE/index.vue b/src/views/system/dicomAE/index.vue index 6e2ffa4..3015837 100644 --- a/src/views/system/dicomAE/index.vue +++ b/src/views/system/dicomAE/index.vue @@ -1,11 +1,165 @@ \ No newline at end of file diff --git a/src/views/system/notice/index.vue b/src/views/system/notice/index.vue index 9dd3646..08b9e42 100644 --- a/src/views/system/notice/index.vue +++ b/src/views/system/notice/index.vue @@ -249,11 +249,9 @@ min-width="200" show-overflow-tooltip v-if=" - hasPermi([ - 'system:notice:edit', - 'system:notice:publish', - 'system:notice:back', - ]) + hasPermi(['system:notice:edit']) || + hasPermi(['system:notice:publish']) || + hasPermi(['system:notice:back']) " > diff --git a/src/views/trials/trials-panel/subject/subject-list/components/add-subject.vue b/src/views/trials/trials-panel/subject/subject-list/components/add-subject.vue index 3701e65..e4f8ec3 100644 --- a/src/views/trials/trials-panel/subject/subject-list/components/add-subject.vue +++ b/src/views/trials/trials-panel/subject/subject-list/components/add-subject.vue @@ -7,7 +7,7 @@ :before-close="beforeCloseStudyDig" > {{ $t("trials:inspection:button:addTrials") }}({{ + >{{ $t("trials:subject:title:addSubject") }}({{ $t("trials:uploadDicomList:table:patientInfo") }}:T0001132,ZhangSan) @@ -15,7 +15,7 @@ @@ -25,24 +25,27 @@ > + + {{ $t("trials:addRP:button:confirmAddPR") }} + @@ -95,53 +106,61 @@ @selection-change="handleSelectChange" > - + - + - + - + - + - + + + + + @@ -193,7 +212,7 @@ export default { beforeCloseStudyDig() { this.$emit("update:visible", false); }, - // 加入项目 + // 确认添加 addTrials() { this.$emit("update:visible", false); this.$emit("handleOpenDialog", {}, "confirm"); @@ -215,6 +234,12 @@ export default { display: flex; align-items: center; justify-content: space-between; + .topForm { + display: flex; + align-items: center; + justify-content: space-between; + width: 100%; + } } .search { display: flex; diff --git a/src/views/trials/trials-panel/subject/subject-list/index.vue b/src/views/trials/trials-panel/subject/subject-list/index.vue index 0108ef0..547b336 100644 --- a/src/views/trials/trials-panel/subject/subject-list/index.vue +++ b/src/views/trials/trials-panel/subject/subject-list/index.vue @@ -70,7 +70,7 @@ v-hasPermi="['trials:trials-panel:subject:new']" type="primary" icon="el-icon-plus" - @click="handleAdd" + @click="handleOpenDialog({}, 'addSubject')" > {{ $t("common:button:new") }} @@ -269,7 +269,12 @@ /> - + + +