Browse Source

系统通知样式优化

首页bug修复
pull/97/head
pengda 1 month ago
parent
commit
b3acb11d36
  1. 20
      src/views/agent/home.vue

20
src/views/agent/home.vue

@ -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>账户余额&nbsp; <b v-if="walletList && walletList.pub && walletList.pub.remain > 0">{{ walletList.pub.remain }}</b>&nbsp;</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;

Loading…
Cancel
Save