問題頁面(紅框處即為值為空字符串的數據):
改后:
頁面:
···
<a-select v-model="formData.urgentLevel" style="width: 100%" dropdownClassName="selectOption"> <a-select-option v-for="(item,index) in URGENTLEVEL" :key="index" :value="item.code">{{item.name}}</a-select-option> </a-select> ··· URGENTLEVEL:[{ code:'01', name:' ' },{ code:'02', name:'平急' }]
···
關鍵——css:
.ant-select-dropdown-menu-item { //寫在全局處
height: 30px;
}