bug
This commit is contained in:
@@ -41,7 +41,7 @@ export default {
|
|||||||
props: ['params'],
|
props: ['params'],
|
||||||
onShow() {
|
onShow() {
|
||||||
document.title = '网格管理'
|
document.title = '网格管理'
|
||||||
|
this.getGirdUserList()
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.userGird = this.params
|
this.userGird = this.params
|
||||||
|
|||||||
@@ -25,9 +25,14 @@
|
|||||||
<u-loadmore :status="loadmore" color="#999" font-size="24"
|
<u-loadmore :status="loadmore" color="#999" font-size="24"
|
||||||
margin-top="32" margin-bottom="80"/>
|
margin-top="32" margin-bottom="80"/>
|
||||||
</template>
|
</template>
|
||||||
<div class="no-message" v-else>
|
<!-- <div class="no-message" v-else>
|
||||||
<image src="https://cdn.cunwuyun.cn/wxAdmin/img/message.png"/>
|
<image src="https://cdn.cunwuyun.cn/wxAdmin/img/message.png"/>
|
||||||
<p>您还未添加过事务记录<br>点击<b @click="gotoAdd()">新增按钮</b>试试吧~</p>
|
<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>
|
</div>
|
||||||
<AiFixedBtn>
|
<AiFixedBtn>
|
||||||
<div class="addBtn iconfont iconfont-iconfangda" @tap="gotoAdd()"/>
|
<div class="addBtn iconfont iconfont-iconfangda" @tap="gotoAdd()"/>
|
||||||
@@ -125,12 +130,13 @@ export default {
|
|||||||
margin-top: 140px;
|
margin-top: 140px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #888;
|
color: #888;
|
||||||
font-size: 30px;
|
font-size: 28px;
|
||||||
|
|
||||||
b {
|
b{
|
||||||
font-size: 32px;
|
font-size: 28px;
|
||||||
color: $uni-color-primary;
|
color: $uni-color-primary;
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
image {
|
image {
|
||||||
@@ -221,5 +227,23 @@ export default {
|
|||||||
box-sizing: border-box;
|
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>
|
</style>
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
</AiCard>
|
</AiCard>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<div v-else>
|
<!-- <div v-else>
|
||||||
<AiEmpty description="您还未添加过入户走访慰问" class="emptyWrap"></AiEmpty>
|
<AiEmpty description="您还未添加过入户走访慰问" class="emptyWrap"></AiEmpty>
|
||||||
|
|
||||||
<div class="addBtns">
|
<div class="addBtns">
|
||||||
@@ -47,6 +47,10 @@
|
|||||||
<span class="toAdds" @click="toAdd()">新增按钮</span>
|
<span class="toAdds" @click="toAdd()">新增按钮</span>
|
||||||
<span> 试试试吧~</span>
|
<span> 试试试吧~</span>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -320,7 +324,7 @@ uni-page-body {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
color: #b7b7b7;
|
color: #b7b7b7;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
font-weight: 800;
|
font-size: 28px;
|
||||||
|
|
||||||
.toAdds {
|
.toAdds {
|
||||||
color: #467dfe;
|
color: #467dfe;
|
||||||
@@ -346,5 +350,23 @@ uni-page-body {
|
|||||||
bottom: 106px;
|
bottom: 106px;
|
||||||
z-index: 9;
|
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>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user