|
@@ -0,0 +1,171 @@
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
+ <title>活动管理</title>
|
|
|
|
+ <meta name="renderer" content="webkit">
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
|
|
+ <link rel="stylesheet" href="../../layuiadmin/layui/css/layui.css" media="all">
|
|
|
|
+ <link rel="stylesheet" href="../../layuiadmin/style/admin.css" media="all">
|
|
|
|
+ <link rel="stylesheet" type="text/css" href="../../layuiadmin/style/formSelects-v4.css"/>
|
|
|
|
+ <style type="text/css">
|
|
|
|
+ .LAY-btns .layui-nav {padding-left:0;padding-right:10px;top:-4px;margin: 0 10px;border: 0;background-color: #009688;}
|
|
|
|
+ .LAY-btns .layui-nav .layui-nav-item{line-height: 30px;}
|
|
|
|
+ .LAY-btns .layui-nav .layui-nav-child{top:34px;}
|
|
|
|
+ .LAY-btns .layui-nav .layui-nav-bar{display: none;}
|
|
|
|
+ .LAY-btns .layui-nav .layui-nav-child dd.layui-this a{color:#333;background-color:#fff;}
|
|
|
|
+ .LAY-btns .layui-nav .layui-nav-child dd.layui-this a:hover {background-color: #f2f2f2;color: #000;}
|
|
|
|
+ .seach_items {float:right;margin-left: 10px;}
|
|
|
|
+ </style>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+
|
|
|
|
+ <div class="layui-fluid">
|
|
|
|
+ <div class="layui-card">
|
|
|
|
+ <div class="layui-card-body" pad15>
|
|
|
|
+ <div class="layui-row layui-col-space15">
|
|
|
|
+ <div class="layui-col-md12">
|
|
|
|
+ <div class="LAY-btns" style="margin-bottom: 10px;">
|
|
|
|
+ <div class="layui-col-xs2">
|
|
|
|
+ <button class="layui-btn" id="btn_add"><i class="layui-icon layui-icon-add-circle"></i>添加</button>
|
|
|
|
+ </div>
|
|
|
|
+ <form class="layui-form" lay-filter="query-form-element">
|
|
|
|
+ <div class="seach_items">
|
|
|
|
+ <button class="layui-btn" lay-submit lay-filter="query-form-element"><i class="layui-icon layui-icon-search"></i>查询</button>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="seach_items">
|
|
|
|
+ <input type="text" name="title" autocomplete="off" class="layui-input" placeholder="标题"/>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ <div style="clear: both;"></div>
|
|
|
|
+ </div>
|
|
|
|
+ <table class="layui-hide" id="datagrid" lay-filter="datagrid-operate"></table>
|
|
|
|
+
|
|
|
|
+ <script type="text/html" id="datagrid-operate-bar">
|
|
|
|
+ <div class="layui-btn-group">
|
|
|
|
+ <a class="layui-btn layui-btn-xs" lay-event="detail">查看</a>
|
|
|
|
+ <a class="layui-btn layui-btn-warm layui-btn-xs" lay-event="edit">修改</a>
|
|
|
|
+ <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a>
|
|
|
|
+ </div>
|
|
|
|
+ </script>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <script src="../../layuiadmin/layui/layui.js?t=1"></script>
|
|
|
|
+ <script>
|
|
|
|
+ layui.config({
|
|
|
|
+ base: '../../../layuiadmin/' //静态资源所在路径
|
|
|
|
+ }).extend({
|
|
|
|
+ index: 'lib/index' //主入口模块
|
|
|
|
+ ,formSelects: 'formSelects-v4'
|
|
|
|
+ }).use(['index', 'table', 'form', 'formSelects'], function(){
|
|
|
|
+ var $ = layui.$
|
|
|
|
+ ,table = layui.table
|
|
|
|
+ ,form = layui.form;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ table.render({
|
|
|
|
+ elem: '#datagrid'
|
|
|
|
+ ,url: '/activity/'
|
|
|
|
+ ,cols: [[
|
|
|
|
+ {field:'title', title:'标题',width: 200}
|
|
|
|
+ ,{field:'end_date', title:'截止日期',width: 170}
|
|
|
|
+ ,{field:'notes', title:'备注',width: 350}
|
|
|
|
+ ,{field:'create_user_t', title:'添加人',width: 100}
|
|
|
|
+ ,{field:'create_time', title:'添加时间',width: 170}
|
|
|
|
+ ,{width: 140, align:'center', fixed: 'right', toolbar: '#datagrid-operate-bar'}
|
|
|
|
+ ]]
|
|
|
|
+ ,page: true
|
|
|
|
+ ,height: 'full-108'
|
|
|
|
+ , done: function () {
|
|
|
|
+ layui.index.removeNoPermButtons()
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ form.on('submit(query-form-element)', function(data){
|
|
|
|
+ //layer.msg(JSON.stringify(data.field));
|
|
|
|
+ table.reload('datagrid', {
|
|
|
|
+ where: data.field
|
|
|
|
+ ,page:{curr:1}
|
|
|
|
+ });
|
|
|
|
+ layer.closeAll();
|
|
|
|
+ return false;
|
|
|
|
+ });
|
|
|
|
+ //监听工具条
|
|
|
|
+ table.on('tool(datagrid-operate)', function(obj){
|
|
|
|
+ var data = obj.data;
|
|
|
|
+ table.editdata = data;
|
|
|
|
+ if(obj.event === 'edit'){
|
|
|
|
+ if (data.is_deleted) {
|
|
|
|
+ layer.msg('该活动已删除,禁止修改!');
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ title: '修改',
|
|
|
|
+ shadeClose: false,
|
|
|
|
+ area: ['70%', '90%'],
|
|
|
|
+ btn: ['保存', '取消'],
|
|
|
|
+ yes: function (index, dom) {
|
|
|
|
+ layui.onSubmitChild = function (data) {
|
|
|
|
+ layer.close(index);
|
|
|
|
+ table.reload('datagrid', {});
|
|
|
|
+ };
|
|
|
|
+ layui.submitChild();
|
|
|
|
+ },
|
|
|
|
+ btn2: function(index, layero){
|
|
|
|
+ layer.close(index);//关闭当前按钮
|
|
|
|
+ },
|
|
|
|
+ content: 'edit.html?id='+data.id
|
|
|
|
+ });
|
|
|
|
+ }else if(obj.event === 'detail'){
|
|
|
|
+ layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ title: '查看',
|
|
|
|
+ shadeClose: true,
|
|
|
|
+ area: ['70%', '90%'],
|
|
|
|
+ content: 'details.html?id='+data.id
|
|
|
|
+ });
|
|
|
|
+ }else if(obj.event === 'del'){
|
|
|
|
+ layer.confirm('确定要删除吗?', function(index){
|
|
|
|
+ layer.close(index);
|
|
|
|
+ layui.admin.req({
|
|
|
|
+ notice: true
|
|
|
|
+ ,url: '/activity/'+data.id + '/'
|
|
|
|
+ ,type: 'delete'
|
|
|
|
+ ,done: function(res){
|
|
|
|
+ table.reload('datagrid',{});
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ $('#btn_add').on('click', function(){
|
|
|
|
+ layer.open({
|
|
|
|
+ type: 2,
|
|
|
|
+ title: '添加',
|
|
|
|
+ shadeClose: false,
|
|
|
|
+ area: ['70%', '90%'],
|
|
|
|
+ btn: ['保存', '取消'],
|
|
|
|
+ yes: function (index, dom) {
|
|
|
|
+ layui.onSubmitChild = function (data) {
|
|
|
|
+ layer.close(index);
|
|
|
|
+ table.reload('datagrid', {});
|
|
|
|
+ };
|
|
|
|
+ layui.submitChild();
|
|
|
|
+ },
|
|
|
|
+ btn2: function(index, layero){
|
|
|
|
+ layer.close(index);//关闭当前按钮
|
|
|
|
+ },
|
|
|
|
+ content: 'edit.html'
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ </script>
|
|
|
|
+</body>
|
|
|
|
+</html>
|
|
|
|
+
|