部分问题修复

main
wangxiaoshuang 2024-05-09 09:38:02 +08:00
parent 650a65da41
commit e3be1e350b
2 changed files with 24 additions and 28 deletions

View File

@ -16,7 +16,7 @@
label-width="120px" label-width="120px"
> >
<div class="base-dialog-body"> <div class="base-dialog-body">
<p>{{ $t("trials:activate:ApplyMessage") }}</p> <p class="title">{{ $t("trials:activate:ApplyMessage") }}</p>
<!-- 单位名称 --> <!-- 单位名称 -->
<el-form-item <el-form-item
:label="$t('trials:trials-list:activate:organizationName')" :label="$t('trials:trials-list:activate:organizationName')"
@ -94,7 +94,7 @@
> >
</el-form-item> </el-form-item>
<div v-if="isActivate"> <div v-if="isActivate">
<p>{{ $t("trials:activate:Message") }}</p> <p class="title">{{ $t("trials:activate:Message") }}</p>
<!-- 单位名称 --> <!-- 单位名称 -->
<el-form-item <el-form-item
:label="$t('trials:trials-list:activate:organizationName')" :label="$t('trials:trials-list:activate:organizationName')"
@ -382,4 +382,11 @@ export default {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.title {
font-size: 16px;
font-weight: bold;
}
::v-deep .el-form-item__label {
font-weight: bold;
}
</style> </style>

View File

@ -277,32 +277,21 @@
@click="readResult(scope.row)" @click="readResult(scope.row)"
:disabled="scope.row.ReadingTaskState !== 2" :disabled="scope.row.ReadingTaskState !== 2"
/> />
<el-dropdown <!--评估报告-->
style="margin-left: 10px" <el-button
@command="(command) => handleCommand(command, scope.row)" circle
> icon="el-icon-document"
<el-button :title="$t('trials:trials-panel:hirVisit:EvaluationReport')"
class="el-dropdown-link" @click="handleCommand('showReport', scope.row)"
circle :disabled="scope.row.ReadingTaskState !== 2"
icon="el-icon-more" />
:title="$t('common:action:action')" <!--下载影像-->
> <el-button
</el-button> circle
<el-dropdown-menu slot="dropdown"> icon="el-icon-download"
<!--评估报告disabled--> :title="$t('trials:reading:button:uploadImages')"
<el-dropdown-item @click="handleCommand('downloadImage', scope.row)"
command="showReport" />
:disabled="scope.row.ReadingTaskState !== 2"
>{{
$t("trials:trials-panel:hirVisit:EvaluationReport")
}}</el-dropdown-item
>
<!--数据导出-->
<el-dropdown-item command="downloadImage">{{
$t("trials:reading:button:uploadImages")
}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>