fix: 修复筛选栏空关联告警
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user