作者 吴孟雨
1 个管道 的构建 通过 耗费 8 秒

添加我的福牌空白页

... ... @@ -5,6 +5,21 @@ body, html{
.content {
width: 100%;
}
.no-data {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.no-data .tips {
color: #999999;
font-size: 0.32rem;
}
.cards-list {
width: 100%;
display: flex;
... ...
... ... @@ -10,6 +10,9 @@
</head>
<body>
<div class="content">
<div class="no-data">
<div class="tips">暂无供奉的福牌!</div>
</div>
<div class="cards-list">
<foreach name="list" item="vo">
<a href="{:url('user/User/details',array('id'=>$vo.id))}" style="text-decoration:none;
... ...