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

@@ -41,7 +41,7 @@ export default {
props: ['params'],
onShow() {
document.title = '网格管理'
this.getGirdUserList()
},
mounted() {
this.userGird = this.params

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>

View File

@@ -39,7 +39,7 @@
</AiCard>
</template>
<div v-else>
<!-- <div v-else>
<AiEmpty description="您还未添加过入户走访慰问" class="emptyWrap"></AiEmpty>
<div class="addBtns">
@@ -47,6 +47,10 @@
<span class="toAdds" @click="toAdd()">新增按钮</span>
<span> 试试试吧~</span>
</div>
</div> -->
<div class="empty" v-else>
<img src="https://cdn.cunwuyun.cn/dvcp/h5/no-data.png" alt="">
<p>您还未添加过走访慰问<br/>点击<span @click="toAdd()">新增按钮</span>试试吧</p>
</div>
</div>
</div>
@@ -320,7 +324,7 @@ uni-page-body {
text-align: center;
color: #b7b7b7;
margin-top: 10px;
font-weight: 800;
font-size: 28px;
.toAdds {
color: #467dfe;
@@ -346,5 +350,23 @@ uni-page-body {
bottom: 106px;
z-index: 9;
}
.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>