作者 潘浩文
1 个管道 的构建 通过 耗费 1 秒

意见修改

... ... @@ -5,6 +5,17 @@ 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%);
}
.cards-list {
width: 100%;
display: flex;
... ...
... ... @@ -10,6 +10,11 @@
</head>
<body>
<div class="content">
<empty name="list">
<div class="no-data">
<div class="tips">暂无供奉的福牌!</div>
</div>
</empty>
<div class="cards-list">
<foreach name="list" item="vo">
<a href="{:url('user/User/details',array('id'=>$vo.id))}" style="text-decoration:none;
... ...