fix(selectTabBox): 修复认证房源和认证中介字体颜色问题

style(seachModule): 添加item-checkbox-housing类名

chore(dist): 更新index.html和seachPage.fcd81ef8.js文件
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-07-08 12:35:11 +08:00
parent 9beeff6fb9
commit 8462981904
8 changed files with 8 additions and 8 deletions

View File

@@ -251,7 +251,7 @@
<span class="item-checkbox__inner"></span>
认证房源
</div>
<div class="item-checkbox flexacenter" v-if="routePath == '/intermediaryHousing'" :class="{ pitch: pitchValue.isintermediary == 1 }" @click="selectCheckboxOption('isintermediary')">
<div class="item-checkbox flexacenter item-checkbox-housing" v-if="routePath == '/intermediaryHousing'" :class="{ pitch: pitchValue.isintermediary == 1 }" @click="selectCheckboxOption('isintermediary')">
<span class="item-checkbox__inner"></span>
认证中介
</div>

View File

@@ -211,7 +211,7 @@
v-for="(item, i) in otherData" :key="i">
<el-checkbox-group v-model="otherCheck.list" @change="setOtherCheck">
<!-- 特殊处理 认证房源 要红色字体 -->
<el-checkbox :label="item.id" :style="{color: item.title == '认证房源' ? '#F95D5D' : ''}">{{ item.title }}</el-checkbox>
<el-checkbox :label="item.id" :style="{color: item.title == '认证房源' || item.title == '认证中介' ? '#F95D5D' : ''}">{{ item.title }}</el-checkbox>
</el-checkbox-group>
</div>
</div>