部分问题修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
1eea3c8af7
commit
5998d59693
|
@ -161,14 +161,14 @@
|
|||
prop="ExperimentName"
|
||||
:label="$t('trials:trials-list:table:experimentName')"
|
||||
show-overflow-tooltip
|
||||
min-width="140"
|
||||
min-width="120"
|
||||
sortable="custom"
|
||||
/>
|
||||
|
||||
<el-table-column
|
||||
prop="Sponsor"
|
||||
:label="$t('trials:trials-list:table:sponsor')"
|
||||
min-width="100"
|
||||
min-width="90"
|
||||
show-overflow-tooltip
|
||||
sortable="custom"
|
||||
/>
|
||||
|
@ -207,7 +207,7 @@
|
|||
:label="$t('trials:trials-list:table:CriterionTypeList')"
|
||||
show-overflow-tooltip
|
||||
v-if="hasPermi(['role:pm', 'role:pi', 'role:sr'])"
|
||||
min-width="140"
|
||||
min-width="130"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{
|
||||
|
@ -222,6 +222,7 @@
|
|||
prop="UnSubmitCount"
|
||||
:label="$t('trials:trials-list:table:UnSubmitCount')"
|
||||
show-overflow-tooltip
|
||||
min-width="90"
|
||||
v-if="hasPermi(['role:pm'])"
|
||||
sortable="custom"
|
||||
/>
|
||||
|
@ -230,23 +231,25 @@
|
|||
prop="UnReadCount"
|
||||
:label="$t('trials:trials-list:table:UnReadCount')"
|
||||
show-overflow-tooltip
|
||||
min-width="90"
|
||||
v-if="hasPermi(['role:pm', 'role:pi', 'role:sr'])"
|
||||
sortable="custom"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="CreateTime"
|
||||
:label="$t('trials:trials-list:table:createDate')"
|
||||
show-overflow-tooltip
|
||||
min-width="170"
|
||||
sortable="custom"
|
||||
/>
|
||||
<!--到期日-->
|
||||
<el-table-column
|
||||
prop="AuthorizationDate"
|
||||
:label="$t('trials:trials-list:table:dateAuthorized')"
|
||||
show-overflow-tooltip
|
||||
min-width="180"
|
||||
min-width="170"
|
||||
sortable="custom"
|
||||
/>
|
||||
<!-- <el-table-column
|
||||
prop="CreateTime"
|
||||
:label="$t('trials:trials-list:table:createDate')"
|
||||
show-overflow-tooltip
|
||||
sortable="custom"
|
||||
/> -->
|
||||
<!--授权时长-->
|
||||
<!-- <el-table-column
|
||||
prop="AuthorizationDuration"
|
||||
|
|
|
@ -38,11 +38,8 @@
|
|||
<el-descriptions-item :label="$t('trials:trials-list:form:indication')">
|
||||
{{ trialInfo.Indication }}
|
||||
</el-descriptions-item>
|
||||
<!--阅片标准-->
|
||||
<el-descriptions-item
|
||||
:label="$t('trials:trials-list:form:criterion')"
|
||||
:span="2"
|
||||
>
|
||||
<!--阅片标准:span="2"-->
|
||||
<el-descriptions-item :label="$t('trials:trials-list:form:criterion')">
|
||||
{{
|
||||
trialInfo.CriterionTypeList
|
||||
? trialInfo.CriterionTypeList.map((item) =>
|
||||
|
@ -82,6 +79,12 @@
|
|||
>
|
||||
{{ trialInfo.AuthorizationDuration }}
|
||||
</el-descriptions-item>
|
||||
<!--创建日期-->
|
||||
<el-descriptions-item
|
||||
:label="$t('trials:trials-list:table:createDate')"
|
||||
>
|
||||
{{ trialInfo.CreateTime }}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</div>
|
||||
<div
|
||||
|
@ -203,7 +206,7 @@ export default {
|
|||
</script>
|
||||
<style lang="scss">
|
||||
.trial-information {
|
||||
height: 100%;
|
||||
min-height: 100%;
|
||||
padding: 10px 0 0 10px;
|
||||
background: #fff;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue