Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
commit
afcd1b82c0
|
@ -73,6 +73,21 @@
|
||||||
:ArchiveTypeEnum="ArchiveTypeEnum"
|
:ArchiveTypeEnum="ArchiveTypeEnum"
|
||||||
:rowData="rowData"
|
:rowData="rowData"
|
||||||
/>
|
/>
|
||||||
|
<!--阅片人资质材料-->
|
||||||
|
<!-- <certificate
|
||||||
|
v-if="[8].includes(SubIdentificationEnum)"
|
||||||
|
:ArchiveTypeEnum="ArchiveTypeEnum"
|
||||||
|
:rowData="rowData"
|
||||||
|
:Id="Id"
|
||||||
|
:viewStatus="viewStatus"
|
||||||
|
/> -->
|
||||||
|
<!--医学审核-->
|
||||||
|
<medical-feedback
|
||||||
|
v-if="[9].includes(SubIdentificationEnum)"
|
||||||
|
:isDoc="true"
|
||||||
|
:TITLE="TITLE"
|
||||||
|
:viewStatus="viewStatus"
|
||||||
|
/>
|
||||||
<!--阅片记录-->
|
<!--阅片记录-->
|
||||||
<reading-tracking
|
<reading-tracking
|
||||||
v-if="[11].includes(SubIdentificationEnum)"
|
v-if="[11].includes(SubIdentificationEnum)"
|
||||||
|
@ -80,6 +95,14 @@
|
||||||
:TITLE="TITLE"
|
:TITLE="TITLE"
|
||||||
:viewStatus="viewStatus"
|
:viewStatus="viewStatus"
|
||||||
/>
|
/>
|
||||||
|
<!--申报方同意入项记录-->
|
||||||
|
<!-- <entry-record
|
||||||
|
v-if="[12].includes(SubIdentificationEnum)"
|
||||||
|
:ArchiveTypeEnum="ArchiveTypeEnum"
|
||||||
|
:rowData="rowData"
|
||||||
|
:Id="Id"
|
||||||
|
:viewStatus="viewStatus"
|
||||||
|
/> -->
|
||||||
<!--培训记录/共享资料-->
|
<!--培训记录/共享资料-->
|
||||||
<Attachments-management
|
<Attachments-management
|
||||||
v-if="[13].includes(SubIdentificationEnum)"
|
v-if="[13].includes(SubIdentificationEnum)"
|
||||||
|
@ -87,13 +110,6 @@
|
||||||
:TITLE="TITLE"
|
:TITLE="TITLE"
|
||||||
:viewStatus="viewStatus"
|
:viewStatus="viewStatus"
|
||||||
/>
|
/>
|
||||||
<!--医学审核-->
|
|
||||||
<medical-feedback
|
|
||||||
v-if="[9].includes(SubIdentificationEnum)"
|
|
||||||
:isDoc="true"
|
|
||||||
:TITLE="TITLE"
|
|
||||||
:viewStatus="viewStatus"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -107,6 +123,8 @@ import temp from './components/template/index.vue'
|
||||||
|
|
||||||
// 阅片人相关
|
// 阅片人相关
|
||||||
import curriculumVitae from './components/viewer/curriculumVitae/index.vue'
|
import curriculumVitae from './components/viewer/curriculumVitae/index.vue'
|
||||||
|
import certificate from './components/viewer/certificate/index.vue'
|
||||||
|
import entryRecord from './components/viewer/entryRecord/index.vue'
|
||||||
import readingTracking from '@/views/trials/trials-panel/reading/reading-tracking/index.vue'
|
import readingTracking from '@/views/trials/trials-panel/reading/reading-tracking/index.vue'
|
||||||
import medicalFeedback from '@/views/trials/trials-panel/reading/pm-medical-feedback/index.vue'
|
import medicalFeedback from '@/views/trials/trials-panel/reading/pm-medical-feedback/index.vue'
|
||||||
import AttachmentsManagement from '@/views/trials/trials-panel/attachments/attachment-management/index.vue'
|
import AttachmentsManagement from '@/views/trials/trials-panel/attachments/attachment-management/index.vue'
|
||||||
|
@ -120,6 +138,8 @@ export default {
|
||||||
trainRecord,
|
trainRecord,
|
||||||
temp,
|
temp,
|
||||||
|
|
||||||
|
entryRecord,
|
||||||
|
certificate,
|
||||||
curriculumVitae,
|
curriculumVitae,
|
||||||
readingTracking,
|
readingTracking,
|
||||||
AttachmentsManagement,
|
AttachmentsManagement,
|
||||||
|
@ -194,7 +214,15 @@ export default {
|
||||||
height: calc(100% - 80px);
|
height: calc(100% - 80px);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
&::-webkit-scrollbar {
|
&::-webkit-scrollbar {
|
||||||
display: none; /* Chrome Safari */
|
//display: none; /* Chrome Safari */
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
background-color: #e4e4e4;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
&::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #a1a3a9;
|
||||||
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.noTop {
|
.noTop {
|
||||||
|
|
Loading…
Reference in New Issue