forked from github/dataease
fix(工具箱): 模板管理导入模板弹窗-选择分类-添加分类选项固定在下拉列表底部
This commit is contained in:
parent
410ed4c78d
commit
89e777ce12
@ -30,7 +30,11 @@
|
|||||||
multiple
|
multiple
|
||||||
placeholder="可多选"
|
placeholder="可多选"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
:popper-class="templateCategories.length ? '' : 'custom-category-empty'"
|
:popper-class="
|
||||||
|
templateCategories.length
|
||||||
|
? 'custom-category-padding'
|
||||||
|
: 'custom-category-empty custom-category-padding'
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="option in templateCategories"
|
v-for="option in templateCategories"
|
||||||
@ -41,15 +45,13 @@
|
|||||||
<div class="custom-dropdown__empty">
|
<div class="custom-dropdown__empty">
|
||||||
<span>暂无可选分类</span>
|
<span>暂无可选分类</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="custom-option-line"></div>
|
<div class="custom-option-line">
|
||||||
<div>
|
<div @click="doAddCategory" class="flex-align-center">
|
||||||
<el-button
|
<el-icon>
|
||||||
@click="doAddCategory"
|
<Plus></Plus>
|
||||||
icon="Plus"
|
</el-icon>
|
||||||
text
|
添加分类
|
||||||
style="width: 100%; justify-content: flex-start"
|
</div>
|
||||||
>添加分类</el-button
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@ -314,10 +316,42 @@ if (props.templateId) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.custom-option-line {
|
.custom-option-line {
|
||||||
width: calc(100% -8px);
|
width: 100%;
|
||||||
margin: 4px;
|
position: absolute;
|
||||||
height: 1px;
|
bottom: 0;
|
||||||
background-color: rgba(31, 35, 41, 0.15);
|
height: 42px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
background: #fff;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
height: 1px;
|
||||||
|
width: calc(100% - 22px);
|
||||||
|
left: 11px;
|
||||||
|
top: 0;
|
||||||
|
background-color: #1f232926;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flex-align-center {
|
||||||
|
width: 100%;
|
||||||
|
height: 32px;
|
||||||
|
color: var(--el-input-icon-color);
|
||||||
|
cursor: pointer;
|
||||||
|
padding-left: 11px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 22px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--ed-fill-color-light);
|
||||||
|
}
|
||||||
|
.ed-icon {
|
||||||
|
font-size: 16px;
|
||||||
|
margin: 0 8px 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-category-empty {
|
.custom-category-empty {
|
||||||
@ -334,10 +368,18 @@ if (props.templateId) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.custom-category-padding {
|
||||||
|
.ed-select-dropdown__list {
|
||||||
|
padding-bottom: 42px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.custom-dropdown__empty {
|
.custom-dropdown__empty {
|
||||||
display: none;
|
display: none;
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
height: 32px;
|
||||||
|
line-height: 32px;
|
||||||
color: rgba(143, 149, 158, 1);
|
color: rgba(143, 149, 158, 1);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user