You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
5.6 KiB
HTML
124 lines
5.6 KiB
HTML
2 years ago
|
<!DOCTYPE html>
|
||
|
<html><head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>抽水蓄能电站智能化状态监测系统</title>
|
||
|
|
||
|
<meta name="description" content="Dashboard">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<!--Basic Styles-->
|
||
|
<link href="/static/admin/style/bootstrap.css" rel="stylesheet">
|
||
|
<link href="/static/admin/style/font-awesome.css" rel="stylesheet">
|
||
|
<link href="/static/admin/style/weather-icons.css" rel="stylesheet">
|
||
|
|
||
|
<!--Beyond styles-->
|
||
|
<link id="beyond-link" href="/static/admin/style/beyond.css" rel="stylesheet" type="text/css">
|
||
|
<link href="/static/admin/style/demo.css" rel="stylesheet">
|
||
|
<link href="/static/admin/style/typicons.css" rel="stylesheet">
|
||
|
<link href="/static/admin/style/animate.css" rel="stylesheet">
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- 头部 -->
|
||
|
{include file="public/top" /}
|
||
|
<!-- /头部 -->
|
||
|
|
||
|
<div class="main-container container-fluid">
|
||
|
<div class="page-container">
|
||
|
<!-- Page Sidebar -->
|
||
|
{include file="public/left" /}
|
||
|
<!-- /Page Sidebar -->
|
||
|
<!-- Page Content -->
|
||
|
<div class="page-content">
|
||
|
<!-- Page Breadcrumb -->
|
||
|
<div class="page-breadcrumbs">
|
||
|
<ul class="breadcrumb">
|
||
|
<li>
|
||
|
<a href="#">系统</a>
|
||
|
</li>
|
||
|
<li class="active">文章管理</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<!-- /Page Breadcrumb -->
|
||
|
|
||
|
<!-- Page Body -->
|
||
|
<div class="page-body">
|
||
|
|
||
|
<button type="button" tooltip="添加栏目" class="btn btn-sm btn-azure btn-addon" onClick="javascript:window.location.href = '{:url('add')}'"> <i class="fa fa-plus"></i> Add
|
||
|
</button>
|
||
|
<div class="row">
|
||
|
<div class="col-lg-12 col-sm-12 col-xs-12">
|
||
|
<div class="widget">
|
||
|
<div class="widget-body">
|
||
|
<div class="flip-scroll">
|
||
|
<form action="" method="post">
|
||
|
<table class="table table-bordered table-hover">
|
||
|
<thead class="">
|
||
|
<tr>
|
||
|
<th class="text-center" width="10%">ID</th>
|
||
|
<th class="text-center">标题</th>
|
||
|
<th class="text-center">缩略图</th>
|
||
|
<th class="text-center">作者</th>
|
||
|
<th class="text-center">推荐</th>
|
||
|
<th class="text-center">所属栏目</th>
|
||
|
<th class="text-center" width="20%">操作</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{volist name="artres" id="art"}
|
||
|
<tr>
|
||
|
<td align="center">{$art.id}</td>
|
||
|
<td><?php echo mb_substr($art['title'], 0,9,'utf-8'); if(strlen($art['title'])>9){echo '...';}?></td>
|
||
|
<td align="center">
|
||
|
{if condition="$art['thumb'] neq ''"}
|
||
|
<img src="{$art.thumb}" height="30">
|
||
|
{else /}
|
||
|
暂无缩略图
|
||
|
{/if}
|
||
|
</td>
|
||
|
<td align="center">{if condition="$art['author'] eq ''"}未填写{else /}{$art.author}{/if}</td>
|
||
|
<td align="center">{if condition="$art['rec'] eq 0"}未推荐{else /}已推荐{/if}</td>
|
||
|
<td align="center">{$art.catename}</td>
|
||
|
<td align="center">
|
||
|
<a href="{:url('edit',array('id'=>$art['id']))}" class="btn btn-primary btn-sm shiny">
|
||
|
<i class="fa fa-edit"></i> 编辑
|
||
|
</a>
|
||
|
<a href="#" onClick="warning('确实要删除吗', '{:url('del',array('id'=>$art['id']))}')" class="btn btn-danger btn-sm shiny">
|
||
|
<i class="fa fa-trash-o"></i> 删除
|
||
|
</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{/volist}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</form>
|
||
|
</div>
|
||
|
<div style="padding-top:10px;">
|
||
|
{$artres->render()}
|
||
|
</div>
|
||
|
<div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<!-- /Page Body -->
|
||
|
</div>
|
||
|
<!-- /Page Content -->
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!--Basic Scripts-->
|
||
|
<script src="/static/admin/style/jquery_002.js"></script>
|
||
|
<script src="/static/admin/style/bootstrap.js"></script>
|
||
|
<script src="/static/admin/style/jquery.js"></script>
|
||
|
<!--Beyond Scripts-->
|
||
|
<script src="/static/admin/style/beyond.js"></script>
|
||
|
|
||
|
|
||
|
|
||
|
</body></html>
|