去掉详情中下拉框的小箭头

This commit is contained in:
曹磊 2026-04-24 16:18:37 +08:00
parent 2400c2a27c
commit 4f0f5371ea
2 changed files with 8 additions and 5 deletions

View File

@ -199,12 +199,15 @@ html[data-theme='light'] {
.ant-form:not(.jeecg-form-detail-effect) { .ant-form:not(.jeecg-form-detail-effect) {
.ant-select.ant-select-disabled { .ant-select.ant-select-disabled {
.ant-select-selection-item { .ant-select-selection-item {
color: rgba(51, 51, 51, 0.25) !important; color: #606266 !important;
// color: rgba(51, 51, 51, 0.25); // color: rgba(51, 51, 51, 0.25);
.ant-select-selection-item-content { .ant-select-selection-item-content {
color: rgba(51, 51, 51, 0.25); color: rgba(51, 51, 51, 0.25);
} }
} }
.ant-select-arrow{
display: none !important;
}
} }
.ant-input-number.ant-input-number-disabled { .ant-input-number.ant-input-number-disabled {
.ant-input-number-input { .ant-input-number-input {

View File

@ -13,7 +13,7 @@
<a-row > <a-row >
<a-col :span="24"> <a-col :span="24">
<a-form-item label="设备类型" v-bind="validateInfos.deviceType" id="DeviceConfigForm-deviceType" name="deviceType"> <a-form-item label="设备类型" v-bind="validateInfos.deviceType" id="DeviceConfigForm-deviceType" name="deviceType">
<j-dict-select-tag v-model:value="formData.deviceType" :showLabel="false" dictCode="tplink_device_type" placeholder="请选择设备类型" @change="changeType" @upDictCode="upDictCode"/> <j-dict-select-tag v-model:value="formData.deviceType" :disabled="disabled" :showLabel="false" dictCode="tplink_device_type" placeholder="请选择设备类型" @change="changeType" @upDictCode="upDictCode"/>
</a-form-item> </a-form-item>
</a-col> </a-col>
</a-row> </a-row>
@ -34,7 +34,7 @@
<a-row > <a-row >
<a-col :span="24"> <a-col :span="24">
<a-form-item label="设备维度" v-bind="validateInfos.dimension" id="DeviceConfigForm-dimension" name="dimension"> <a-form-item label="设备维度" v-bind="validateInfos.dimension" id="DeviceConfigForm-dimension" name="dimension">
<a-select v-model:value="formData.dimension" placeholder="请选择设备维度" allow-clear> <a-select v-model:value="formData.dimension" :disabled="disabled" placeholder="请选择设备维度" allow-clear>
<a-select-option value="机构维度">机构维度</a-select-option> <a-select-option value="机构维度">机构维度</a-select-option>
<a-select-option value="区域维度">区域维度</a-select-option> <a-select-option value="区域维度">区域维度</a-select-option>
</a-select> </a-select>