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.
105 lines
4.3 KiB
HTML
105 lines
4.3 KiB
HTML
<!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="__PUBLIC__/style/bootstrap.css" rel="stylesheet">
|
|
<link href="__PUBLIC__/style/font-awesome.css" rel="stylesheet">
|
|
<link href="__PUBLIC__/style/weather-icons.css" rel="stylesheet">
|
|
|
|
<!--Beyond styles-->
|
|
<link id="beyond-link" href="__PUBLIC__/style/beyond.css" rel="stylesheet" type="text/css">
|
|
<link href="__PUBLIC__/style/demo.css" rel="stylesheet">
|
|
<link href="__PUBLIC__/style/typicons.css" rel="stylesheet">
|
|
<link href="__PUBLIC__/style/animate.css" rel="stylesheet">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="bodyClass">
|
|
{include file="public/top" /}
|
|
|
|
<div class="main-container container-fluid hei">
|
|
<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="{:url('index/index')}">系统</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">
|
|
<table class="table table-bordered table-hover">
|
|
<thead class="">
|
|
<tr>
|
|
<th class="text-center">ID</th>
|
|
<th class="text-center">节点名称</th>
|
|
<th class="text-center">节点链接</th>
|
|
<th class="text-center">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{volist name="cateres" id="cate"}
|
|
<tr>
|
|
<td align="center">{$cate.id}</td>
|
|
<td>{if condition="$cate['level'] neq 0"}|{/if}<?php echo str_repeat('-',$cate['level']*8)?>{$cate.pidname}</td>
|
|
<td align="center">{$cate.linkurl}</td>
|
|
<td align="center">
|
|
<a href="{:url('edit',array('id'=>$cate['id']))}" class="btn btn-primary btn-sm shiny">
|
|
<i class="fa fa-edit"></i> 编辑
|
|
</a>
|
|
<a href="#" onClick="warning('确实要删除吗','{:url('del',array('id'=>$cate['id']))}')" class="btn btn-danger btn-sm shiny">
|
|
<i class="fa fa-trash-o"></i> 删除
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{/volist}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- /Page Body -->
|
|
</div>
|
|
<!-- /Page Content -->
|
|
</div>
|
|
</div>
|
|
|
|
<!--Basic Scripts-->
|
|
<script src="__IMG__/cssjs/js/jquery_002.js"></script>
|
|
<script src="__IMG__/cssjs/js/bootstrap.js"></script>
|
|
<script src="__IMG__/cssjs/js/jquery.js"></script>
|
|
<!--Beyond Scripts-->
|
|
<script src="__IMG__/cssjs/js/beyond.js"></script>
|
|
|
|
|
|
</div>
|
|
</body></html>
|