### 公共页面模板代码
```
<!--_meta 作为公共模版分离出去-->
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<meta http-equiv="Cache-Control" content="no-siteapp"/>
<link rel="Bookmark" href="/admin/favicon.ico">
<link rel="Shortcut Icon" href="/admin/favicon.ico"/>
<!--[if lt IE 9]>
<script type="text/javascript" src="/admin/lib/html5.js"></script>
<script type="text/javascript" src="/admin/lib/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="/admin/static/h-ui/css/H-ui.min.css"/>
<link rel="stylesheet" type="text/css" href="/admin/static/h-ui.admin/css/H-ui.admin.css"/>
<link rel="stylesheet" type="text/css" href="/admin/lib/Hui-iconfont/1.0.8/iconfont.css"/>
<link rel="stylesheet" type="text/css" href="/admin/static/h-ui.admin/skin/default/skin.css" id="skin"/>
<link rel="stylesheet" type="text/css" href="/admin/static/h-ui.admin/css/style.css"/>
<!--[if IE 6]>
<script type="text/javascript" src="http://lib.h-ui.net/DD_belatedPNG_0.0.8a-min.js"></script>
<script>DD_belatedPNG.fix('*');</script>
<![endif]-->
<!--/meta 作为公共模版分离出去-->
<title>xxxx系统</title>
</head>
<body>
{include file="common:header" /}
{include file="common:left" /}
<section class="Hui-article-box">
<nav class="breadcrumb"><i class="Hui-iconfont"></i>
<a href="{:url('Index/index')}" class="maincolor">首页</a>
<span class="c-999 en">></span>
<span class="c-666">我的桌面</span>
<a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px"
href="javascript:location.replace(location.href);" title="刷新"><i class="Hui-iconfont"></i>
</a>
</nav>
<div class="Hui-article">
{block name="right"}
<article class="cl pd-20">
<p class="f-20 text-success">欢迎使用后台</p>
<table class="table table-border table-bordered table-bg">
<thead>
<tr>
<th colspan="7" scope="col">信息统计</th>
</tr>
<tr class="text-c">
<th>统计</th>
<th>资讯库</th>
<th>图片库</th>
<th>产品库</th>
<th>用户</th>
<th>管理员</th>
</tr>
</thead>
<tbody>
<tr class="text-c">
<td>总数</td>
<td>92</td>
<td>9</td>
<td>0</td>
<td>8</td>
<td>20</td>
</tr>
<tr class="text-c">
<td>今日</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr class="text-c">
<td>昨日</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr class="text-c">
<td>本周</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr class="text-c">
<td>本月</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
</article>
{/block}
</div>
</section>
<!--_footer 作为公共模版分离出去-->
<script type="text/javascript" src="/admin/lib/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="/admin/lib/layer/2.4/layer.js"></script>
<script type="text/javascript" src="/admin/static/h-ui/js/H-ui.js"></script>
<script type="text/javascript" src="/admin/static/h-ui.admin/js/H-ui.admin.page.js"></script>
<!--/_footer /作为公共模版分离出去-->
<!--请在下方写此页面业务相关的脚本-->
<script type="text/javascript">
$(function () {
$('.del').click(function () {
var url = $(this).attr('link');
layer.confirm('你确定要此操作吗?', {
icon: 5,
btn: ['确定', '取消'] //按钮
}, function () {
$.get(url, function (data) {
if (data.code == 1) {
layer.alert(data.msg, {icon: 6}, function (index) {
layer.close(index);
window.location.reload();
});
} else {
layer.alert(data.msg);
}
});
});
});
$('form').submit(function (e) {
var res = $(this).serialize();
var url = $(this).attr('action');
$.ajax({
url: url,
data: res,
type: 'post',
success: function (data) {
if (data.code == 1) {
layer.alert(data.msg, {icon: 6}, function (index) {
layer.close(index);
window.location.href = "{:url('index')}";
});
} else {
layer.alert(data.msg, {icon: 5}, function (index) {
layer.close(index);
});
}
}
});
return false; // 阻止表单跳转
});
$('.logout').click(function () {
var url = $(this).attr('link');
layer.confirm('你确定要此操作吗?', {
icon: 5,
btn: ['确定', '取消'] //按钮
}, function () {
$.get(url, function (data) {
if (data.code == 1) {
layer.alert(data.msg, {icon: 6}, function (index) {
layer.close(index);
window.location.reload();
});
} else {
layer.alert(data.msg);
}
});
});
});
});
</script>
<!--/请在上方写此页面业务相关的脚本-->
</body>
</html>
```
- 序言介绍
- 个人介绍
- sql文件建表语句
- 后端开发
- 后台登录
- 后台登录页面
- 后台登录控制器代码
- 验证器
- 后台管理员模型
- 商品管理
- 添加商品
- 修改商品
- 删除商品
- 列表
- 后台商品控制器
- 后台商品模型
- 后台商品验证码器
- 拼团活动
- 添加拼团活动
- 修改拼团活动
- 删除活动
- 活动列表
- 分类管理
- 添加分类
- 修改分类
- 删除分类
- 分类列表
- 广告管理
- 添加广告
- 修改广告
- 删除广告
- 广告列表
- 订单管理
- 订单列表
- 用户管理
- 用户列表
- 图片上传
- 图片上传控制器
- 数据管理
- 导出表格功能
- 后台首页
- 首页控制器
- 后台首页模板
- 后台修改密码
- 公共页面
- 公共头部
- 公共左边部分
- 后台公共页面模板
- api接口文档目录
- api-用户注册
- api-用户登录
- api-用户中心
- api-用户基本信息
- api-安全设置
- api-登录密码修改
- api-支付密码修改
- api-拼团
- api-参团
- api-开团
- api-订单详情
- api-收货地址管理
- api-新增收货地址
- api-修改收货地址
- api-删除收货地址
- api-收货地址列表
- api-购物车
- api-购物车列表
- api-购物车商品详情
- api-商城
- api-商品列表
- api-商品详情
- api-商品分类列表
- 跨域
- app前端开发
- app-会员
- app-注册
- app-会员登录
- app-找回密码
- app-商品
- app-商品列表页
- app-商品详情页
- app-商品分类页
- app-用户
- app-个人资料
- app-安全设置
- app-登录密码修改页
- app-支付密码修改页
- app-订单
- app-订单列表页面
- app-订单详情页
- app-收货地址
- app-收货地址列表
- app-添加收货地址
- app-修改收货地址
- app-删除收货地址
- app-购物车列表页
- 全局函数
- 扫码
- 升级检查
- 底部导航
- 组件
- 登录组件
- 登录组件1
- 注册组件
- 忘记密码