fix: 修复筛选栏空关联告警

This commit is contained in:
Cheng Zhou
2026-03-31 12:16:04 +08:00
parent 4bebc64662
commit ceda34fd1d
14 changed files with 110 additions and 83 deletions
+16 -3
View File
@@ -204,7 +204,10 @@
<input v-model="form.agreeTerms" type="checkbox" class="checkbox-input" />
<span class="checkbox-custom"></span>
<span class="checkbox-label">
我同意 <a href="#" class="link" @click.prevent>服务条款</a> <a href="#" class="link" @click.prevent>隐私政策</a>
我同意
<button type="button" class="link link-button">服务条款</button>
<button type="button" class="link link-button">隐私政策</button>
</span>
</label>
<span v-if="errors.agreeTerms" class="error-text">{{ errors.agreeTerms }}</span>
@@ -280,9 +283,9 @@
<RouterLink to="/login" class="footer-link">{{ TEXT.common.actions.login }}</RouterLink>
</p>
<div class="footer-links">
<a href="#" class="footer-small-link">帮助中心</a>
<button type="button" class="footer-small-link footer-link-button">帮助中心</button>
<span class="footer-divider"></span>
<a href="#" class="footer-small-link">联系支持</a>
<button type="button" class="footer-small-link footer-link-button">联系支持</button>
</div>
</div>
</div>
@@ -936,6 +939,16 @@ const handleSubmit = async () => {
transition: opacity 0.2s ease;
}
.link-button,
.footer-link-button {
padding: 0;
border: 0;
background: transparent;
font: inherit;
line-height: inherit;
cursor: pointer;
}
.link:hover {
opacity: 0.8;
}