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