css 中不能同時使用這兩個屬性,禁止點擊可以用js代替
<div class="proBox" :class="[ { checked: checkProduct == item.buildingId }, { hui: !item.unitCount }, ]" v-for="item in panelList.buildingDTOS" :key="item.buildingId" @click=" (e) => { if (item.unitCount) { filterProduct(item.buildingId); } else { e.preventDefault(); } } " >
把對應的事件 handler 改為 (e) => { e.preventDefault(); }