123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="keywords" content="">
- <meta name="description" content="">
- <title text="标签"></title>
- <link rel="stylesheet" href="../../../component/pear/css/pear.css" />
- <link rel="stylesheet" href="../../../admin/css/other/user.css" />
- </head>
- <body class="pear-container">
- <div class="layui-card">
- <div class="layui-card-body">
- <form class="layui-form">
- <div class="layui-form-item">
- <label class="layui-form-label"></label>
- <div class="layui-input-inline">
- <input type="text" name="" placeholder="" class="layui-input">
- </div>
- <label class="layui-form-label"></label>
- <div class="layui-input-inline">
- <input type="text" name="" placeholder="" class="layui-input">
- </div>
- <button class="pear-btn pear-btn-md-0 pear-btn-primary" lay-submit lay-filter="query">
- <i class="layui-icon layui-icon-search"></i> 查询
- </button>
- <button type="reset" class="pear-btn pear-btn-md-0">
- <i class="layui-icon layui-icon-refresh"></i> 重置
- </button>
- </div>
- </form>
- </div>
- </div>
- <div class="layui-card">
- <div class="layui-card-body">
- <table id="table" lay-filter="table"></table>
- </div>
- </div>
- </body>
- <script type="text/html" id="toolbar">
- <button class="pear-btn pear-btn-primary pear-btn-md" lay-event="add">
- <i class="pear-icon pear-icon-add"></i> 新增
- </button>
- </script>
- <script type="text/html" id="bar">
- <a class="cool-line-btn cool-bg-blue" lay-event="edit">编辑</a>
- <div class="cool-line-divider"></div>
- <a class="cool-line-btn cool-bg-blue" lay-event="remove">删除</a>
- </script>
- <script src="../../../component/layui/layui.js"></script>
- <script src="../../../component/pear/pear.js"></script>
- <script>
- layui.use(['request', 'table', 'form', 'popup', 'common'], function () {
- var request = layui.request,
- table = layui.table,
- form = layui.form,
- popup = layui.popup,
- common = layui.common;
- var MODULE_PATH = "/system/label/v1/";
- request.tableRender({
- url: MODULE_PATH,
- cols: [
- [
- {type: 'checkbox'},
- {title: '名称', field: 'name', align: 'center'},
- {title: '背景色', field: 'backColor', align: 'center'},
- {title: '字体颜色', field: 'fontColor', align: 'center'},
- {title: '操作', toolbar: '#bar', align: 'center', width: 130}
- ]
- ]
- });
- table.on('tool(table)', function (obj) {
- if (obj.event === 'edit') {
- edit(obj);
- }
- else if (obj.event === 'remove') {
- remove(obj.data.id);
- }
- });
- table.on('toolbar(table)', function (obj) {
- if (obj.event === 'add') {
- add();
- }
- else if (obj.event === 'removeBatch') {
- remove(common.checkField(obj,'id'));
- }
- });
- form.on('submit(query)', function (data) {
- refresh(data.field);
- return false;
- });
- window.add = function() {
- layer.open({
- type: 2,
- title: '新增',
- shade: 0.1,
- area: ['480px', '500px'],
- content: ['add.html', 'no']
- });
- };
- window.edit= function(obj) {
- layer.open({
- type: 2,
- title: '编辑',
- shade: 0.1,
- area: ['480px', '500px'],
- content: ['add.html?id=' + obj.data.id, 'no']
- });
- };
- window.remove= function(ids) {
- if (ids === '' || ids === undefined) {
- layer.alert('请先选择删除数据!');
- return false;
- }
- layer.confirm("是否确认删除这些项?", function () {
- request.http({
- type: "delete",
- url: MODULE_PATH + ids,
- loading: true,
- success: function (result) {
- refresh();
- if (result.success) {
- popup.success(result.msg);
- } else {
- popup.failure(result.msg);
- }
- }
- })
- });
- };
- window.refresh = function (param) {
- table.reload('table', {where: param});
- };
- })
- </script>
- </html>
|