This commit is contained in:
liuye
2022-02-10 14:44:23 +08:00
parent 2430e560fa
commit 9702e7444d
3 changed files with 53 additions and 7 deletions

View File

@@ -25,9 +25,14 @@
<u-loadmore :status="loadmore" color="#999" font-size="24"
margin-top="32" margin-bottom="80"/>
</template>
<div class="no-message" v-else>
<!-- <div class="no-message" v-else>
<image src="https://cdn.cunwuyun.cn/wxAdmin/img/message.png"/>
<p>您还未添加过事务记录<br>点击<b @click="gotoAdd()">新增按钮</b>试试吧~</p>
</div> -->
<div class="empty" v-else>
<img src="https://cdn.cunwuyun.cn/dvcp/h5/no-data.png" alt="">
<p>您还未添加过事务记录<br/>点击<span @click="gotoAdd()">新增按钮</span>试试吧</p>
</div>
<AiFixedBtn>
<div class="addBtn iconfont iconfont-iconfangda" @tap="gotoAdd()"/>
@@ -125,12 +130,13 @@ export default {
margin-top: 140px;
text-align: center;
color: #888;
font-size: 30px;
font-size: 28px;
b {
font-size: 32px;
b{
font-size: 28px;
color: $uni-color-primary;
padding: 0 8px;
font-weight: 400;
}
image {
@@ -221,5 +227,23 @@ export default {
box-sizing: border-box;
}
}
.empty{
height: 100%;
img{
width: 282px;
height: 306px;
margin: 168px 0 0 234px;
}
p{
text-align: center;
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #999;
line-height: 44px;
span{
color: #467DFE;
}
}
}
}
</style>