部分问题修复
parent
650a65da41
commit
e3be1e350b
|
@ -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>
|
|
@ -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"
|
|
||||||
@command="(command) => handleCommand(command, scope.row)"
|
|
||||||
>
|
|
||||||
<el-button
|
<el-button
|
||||||
class="el-dropdown-link"
|
|
||||||
circle
|
circle
|
||||||
icon="el-icon-more"
|
icon="el-icon-document"
|
||||||
:title="$t('common:action:action')"
|
:title="$t('trials:trials-panel:hirVisit:EvaluationReport')"
|
||||||
>
|
@click="handleCommand('showReport', scope.row)"
|
||||||
</el-button>
|
|
||||||
<el-dropdown-menu slot="dropdown">
|
|
||||||
<!--评估报告disabled-->
|
|
||||||
<el-dropdown-item
|
|
||||||
command="showReport"
|
|
||||||
:disabled="scope.row.ReadingTaskState !== 2"
|
:disabled="scope.row.ReadingTaskState !== 2"
|
||||||
>{{
|
/>
|
||||||
$t("trials:trials-panel:hirVisit:EvaluationReport")
|
<!--下载影像-->
|
||||||
}}</el-dropdown-item
|
<el-button
|
||||||
>
|
circle
|
||||||
<!--数据导出-->
|
icon="el-icon-download"
|
||||||
<el-dropdown-item command="downloadImage">{{
|
:title="$t('trials:reading:button:uploadImages')"
|
||||||
$t("trials:reading:button:uploadImages")
|
@click="handleCommand('downloadImage', scope.row)"
|
||||||
}}</el-dropdown-item>
|
/>
|
||||||
</el-dropdown-menu>
|
|
||||||
</el-dropdown>
|
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
Loading…
Reference in New Issue