部分问题修复

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

View File

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