检查技术选框样式变更、选项添加title

uat_us
wangxiaoshuang 2024-06-07 13:39:03 +08:00
parent 1a24217cd6
commit c863eaac3d
1 changed files with 11 additions and 3 deletions

View File

@ -611,7 +611,7 @@
:close-on-click-modal="false" :close-on-click-modal="false"
:title="$t('trials:logincCfg:form:modality')" :title="$t('trials:logincCfg:form:modality')"
custom-class="base-dialog-wrapper" custom-class="base-dialog-wrapper"
width="800px" width="900px"
> >
<div class="base-dialog-body" style="height: 400px; text-align: center"> <div class="base-dialog-body" style="height: 400px; text-align: center">
<el-transfer <el-transfer
@ -896,7 +896,7 @@ export default {
renderFunc(h, option) { renderFunc(h, option) {
return ( return (
<span> <span title={`${option.value} - ${option.raw.Description}`}>
{option.value} <span style="color:#ddd">-</span>{" "} {option.value} <span style="color:#ddd">-</span>{" "}
{option.raw.Description} {option.raw.Description}
</span> </span>
@ -1431,6 +1431,14 @@ export default {
} }
::v-deep .el-transfer-panel { ::v-deep .el-transfer-panel {
height: 100%; height: 100%;
width: calc(50% - 100px); width: calc(50% - 60px);
}
::v-deep .el-transfer__buttons {
button {
display: block;
}
.el-button + .el-button {
margin: 0;
}
} }
</style> </style>