|
|
@ -15,7 +15,7 @@ |
|
|
|
{{ item.title }} |
|
|
|
<!-- <img class="systemIcon" src="@/assets/home/systemIcon.svg" alt="">--> |
|
|
|
</b> |
|
|
|
<p v-html="item.content">{{ item.content }}</p> |
|
|
|
<p class="html-container" v-html="item.content">{{ item.content }}</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -87,7 +87,7 @@ |
|
|
|
<div class="home-main-right"> |
|
|
|
<div class="accountBalance common-area"> |
|
|
|
<div class="mb-16 red" v-if="walletList && walletList.pub && walletList.pub.forzen_money > 0">含冻结金额 {{ walletList.pub.forzen_money }} 元</div> |
|
|
|
<div class="flex-between"> |
|
|
|
<div class="flex-between" v-if="walletList && walletList.pub && walletList.pub.remain"> |
|
|
|
<span>账户余额 <b v-if="walletList && walletList.pub && walletList.pub.remain > 0">{{ walletList.pub.remain }}</b> 元</span> |
|
|
|
<span class="hoverCommon" @click="isShowSpec = !isShowSpec">{{ isShowSpec ? '收起' : '展开' }}</span> |
|
|
|
</div> |
|
|
@ -384,6 +384,22 @@ export default { |
|
|
|
} |
|
|
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
|
|
.html-container{ |
|
|
|
::v-deep a{ |
|
|
|
display: inline-block; |
|
|
|
color: #8A9099; |
|
|
|
text-decoration: none; |
|
|
|
background-image: url(@/assets/site/form_link.svg); |
|
|
|
background-repeat: no-repeat; |
|
|
|
text-indent: 20px; |
|
|
|
background-size: 14px; |
|
|
|
background-position: 0 50%; |
|
|
|
} |
|
|
|
::v-deep a:hover{ |
|
|
|
color: #006AFF; |
|
|
|
background-image: url(@/assets/site/form_linkActive.svg); |
|
|
|
} |
|
|
|
} |
|
|
|
a { |
|
|
|
text-decoration: none; |
|
|
|
color: #006AFF; |
|
|
|