完善页面
parent
8590b345c9
commit
0692b30850
|
|
@ -76,7 +76,7 @@
|
||||||
<i class="iconfont icon-xiazai"></i> 下载中心
|
<i class="iconfont icon-xiazai"></i> 下载中心
|
||||||
</a>
|
</a>
|
||||||
<dl class="layui-nav-child">
|
<dl class="layui-nav-child">
|
||||||
<dd><a href="javascript:;" path="pages/message/download.html" tab-id="4-1"><i class="iconfont icon-xiazai"></i> 下载列表</a></dd>
|
<dd><a href="javascript:;" path="pages/download/download.html" tab-id="4-1"><i class="iconfont icon-xiazai"></i> 下载列表</a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
<li class="layui-nav-item">
|
<li class="layui-nav-item">
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>下载列表</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>下载列表</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>链接列表</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>链接列表</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>留言列表</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>留言列表</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>产品列表</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>产品列表</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>日志详情</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>日志详情</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -97,6 +97,9 @@
|
||||||
case "del":
|
case "del":
|
||||||
del(data.id);
|
del(data.id);
|
||||||
break;
|
break;
|
||||||
|
case "detail":
|
||||||
|
detail(data.id);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -114,6 +117,10 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function detail (id) {
|
||||||
|
okLayer.open("日志详情", "system-log-detail.html?id=" + id, "90%", "90%")
|
||||||
|
}
|
||||||
|
|
||||||
function del (id) {
|
function del (id) {
|
||||||
okLayer.confirm("确定要删除吗?", function () {
|
okLayer.confirm("确定要删除吗?", function () {
|
||||||
|
|
@ -139,7 +146,8 @@
|
||||||
</script>
|
</script>
|
||||||
<!-- 行工具栏模板 -->
|
<!-- 行工具栏模板 -->
|
||||||
<script type="text/html" id="operationTpl">
|
<script type="text/html" id="operationTpl">
|
||||||
<a href="javascript:;" title="删除" lay-event="del"><i class="layui-icon"></i></a>
|
<a href="javascript:;" title="详情" lay-event="detail"><i class="layui-icon layui-icon-tips"></i></a>
|
||||||
|
<a href="javascript:;" title="删除" lay-event="del"><i class="layui-icon layui-icon-delete"></i></a>
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -60,9 +60,9 @@ okLayer.confirm("确定要批量删除吗?", function (index) {
|
||||||
* @param content 内容url
|
* @param content 内容url
|
||||||
* @param width 弹窗宽度
|
* @param width 弹窗宽度
|
||||||
* @param height 弹窗高度
|
* @param height 弹窗高度
|
||||||
* @param isRefreshTable 是否刷新表格
|
* @param function 回调函数
|
||||||
*/
|
*/
|
||||||
okLayer.open("添加用户", "user-add.html", "90%", "90%", true)
|
okLayer.open("添加用户", "user-add.html", "90%", "90%", function() {})
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
<!--js逻辑-->
|
<!--js逻辑-->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue