修改样式

This commit is contained in:
RenCheng 2025-04-23 23:24:54 +08:00
parent 6a5f411aac
commit 7bdaafe779
4 changed files with 11 additions and 7 deletions

View File

@ -112,7 +112,7 @@ body {
}
.ant-select-selection--multiple .ant-select-selection__choice {
background-color: #3f4354 !important;
background-color: #ffffff !important;
border: 1px solid #3f4354 !important;
}
@ -623,11 +623,12 @@ textarea,
.ant-input-number-handler-down-inner,
.ant-select-tree-dropdown,
.ant-select-dropdown-menu-item,
.ant-select-dropdown-menu-item-selected,
.ant-select-dropdown-content {
.ant-select-dropdown-menu-item-selected {
background: @inpuitbackcolor !important;
}
.ant-select-dropdown-content {
background: @backcolor !important;
}
.ant-popover-message,
input:not(.ant-calendar-input):not(.ant-select-search__field):not(.ant-input-lg),
textarea,

View File

@ -9,7 +9,8 @@
</a-form-model-item>
<a-form-model-item label="转换字段" :labelCol="labelCol" :wrapperCol="wrapperCol" >
<a-tree-select v-model="checkedList" style="width: 100%"
:tree-data="treeData" multiple :show-checked-strategy="SHOW_PARENT" search-placeholder="请选项" />
:tree-data="treeData" multiple :show-checked-strategy="SHOW_PARENT" search-placeholder="请选项"
:dropdownStyle="{ maxHeight: '400px', overflowY: 'auto'}"/>
</a-form-model-item>
<a-form-model-item label="格式策略" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="transfStrategy">
<a-select v-model="form.transfStrategy">

View File

@ -9,7 +9,8 @@
</a-form-model-item>
<a-form-model-item label="列名" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="columnName">
<a-tree-select v-model="form.columnName" style="width: 100%"
:tree-data="treeData" :show-checked-strategy="SHOW_PARENT" search-placeholder="请选项" />
:tree-data="treeData" :show-checked-strategy="SHOW_PARENT" search-placeholder="请选项"
:dropdownStyle="{ maxHeight: '400px', overflowY: 'auto'}"/>
</a-form-model-item>
<a-form-model-item label="数据类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="dataType">
<a-select v-model="form.dataType">

View File

@ -20,7 +20,8 @@
<a-form-model-item label="判定字段" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-if="form.duplicationType == 1" disabled v-model="allText" placeholder="请输入"></a-input>
<a-tree-select v-if="form.duplicationType == 2" v-model="checkedList" style="width: 100%"
:tree-data="treeData" multiple :show-checked-strategy="SHOW_PARENT" search-placeholder="请选项" />
:tree-data="treeData" multiple :show-checked-strategy="SHOW_PARENT" search-placeholder="请选项"
:dropdownStyle="{ maxHeight: '400px', overflowY: 'auto'}"/>
</a-form-model-item>
</a-form-model>