如圖所示:
el-select長度較短的時候,選擇框右側下拉箭頭會遮擋選中的數據
選中數據被遮擋
解決辦法:
組件如下:
<td class="fmtd" :colspan="col.ptproCupNum" v-for="col in row" :key="col.ptproHeatNum" ><el-select class="transparent-select" v-model="col.ptproFm" placeholder="請選擇" clearable ><el-optionv-for="item in optionsFm":key="item":label="item":value="item"></el-option></el-select>
</td>
添加樣式:
/*加大選擇框右側內邊距*/
/deep/.fmtd .el-input__inner{padding-right: 10px;}
/*隱藏選擇框右側向下箭頭,設置背景色透明*/
/deep/.fmtd .el-select .el-input__suffix {background-color: transparent;display: none;
}