|
@@ -0,0 +1,246 @@
|
|
|
+<!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=customer-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">
|
|
|
+ <style type="text/css">
|
|
|
+ .seach_items {
|
|
|
+ float: right;
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+ <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: 40px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .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;
|
|
|
+ }
|
|
|
+ </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 style="float: left">
|
|
|
+ <button class="layui-btn" id="customer_add"><i
|
|
|
+ class="layui-icon layui-icon-add-circle"></i>添加
|
|
|
+ </button>
|
|
|
+ <button class="layui-nav">
|
|
|
+ <div class="layui-nav-item">
|
|
|
+ <a href="javascript:;" style="color:#fff;">导入</a>
|
|
|
+ <dl class="layui-nav-child"> <!-- 二级菜单 -->
|
|
|
+ <dd><a href="#" id="btn_import">执行导入</a></dd>
|
|
|
+ <dd><a href="#" id="btn_download">下载模板</a></dd>
|
|
|
+ </dl>
|
|
|
+ </div>
|
|
|
+ </button>
|
|
|
+ <button class="layui-btn" id="btn_export"><i
|
|
|
+ class="layui-icon layui-icon-download-circle"></i>导出
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <form class="layui-form" lay-filter="query-form-element1">
|
|
|
+ <div class="seach_items">
|
|
|
+ <button class="layui-btn" lay-submit lay-filter="query-form-element1"><i
|
|
|
+ class="layui-icon layui-icon-search"></i>查询
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="seach_items">
|
|
|
+ <input type="text" name="name" autocomplete="off" class="layui-input"
|
|
|
+ placeholder="名称"/>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ <div style="clear: both;"></div>
|
|
|
+ </div>
|
|
|
+ <table class="layui-hide" id="customer_datagrid" lay-filter="customer-operate"></table>
|
|
|
+
|
|
|
+ <script type="text/html" id="customer-operate-bar">
|
|
|
+ <div class="layui-btn-group">
|
|
|
+ <a class="layui-btn layui-btn-xs" lay-event="customer_edit"
|
|
|
+ >修改</a>
|
|
|
+ </div>
|
|
|
+ <div class="layui-btn-group">
|
|
|
+ <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="customer_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' //主入口模块
|
|
|
+ }).use(['index', 'table', 'form', 'upload'], function () {
|
|
|
+ var $ = layui.$;
|
|
|
+ var table = layui.table
|
|
|
+ , form = layui.form
|
|
|
+ , upload = layui.upload
|
|
|
+ , admin = layui.admin;
|
|
|
+
|
|
|
+ table.render({
|
|
|
+ elem: '#customer_datagrid'
|
|
|
+ , url: '/api/agent.json'
|
|
|
+ , cols: [[
|
|
|
+ {field: 'name', title: '名称', width: 150}
|
|
|
+ , {field: 'relation_user', title: "联系人", width: 100}
|
|
|
+ , {field: 'tel', title: '联系电话', width: 150}
|
|
|
+ , {field: 'address', title: '地址', width: 200}
|
|
|
+ , {field: 'bank', title: '开户行', width: 100}
|
|
|
+ , {field: 'account', title: '信用代码', width: 200}
|
|
|
+ , {field: 'enable_text', title: '是否在用', width: 100}
|
|
|
+ , {field: 'notes', title: '备注', width: 200}
|
|
|
+ , {field: 'create_user', title: '创建人', width: 100}
|
|
|
+ , {field: 'create_time', title: '创建时间', width: 150}
|
|
|
+ , {width: 150, align: 'center', fixed: 'right', toolbar: '#customer-operate-bar'}
|
|
|
+ ]]
|
|
|
+ , page: true
|
|
|
+ , height: 'full-108'
|
|
|
+ });
|
|
|
+ $('#btn_download').on('click', function () {
|
|
|
+ layui.view.download("/static/xls/设备信息导入模板.xlsx");
|
|
|
+ });
|
|
|
+ // 导出数据
|
|
|
+ $('#btn_export').on('click', function () {
|
|
|
+ $.get({
|
|
|
+ url: '',
|
|
|
+ dataType: 'json',
|
|
|
+ data: _params,
|
|
|
+ success: function (res) {
|
|
|
+ if (res.code === 1) {
|
|
|
+ layer.msg(res.msg);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ table.exportFile('datagrid', res.data, )
|
|
|
+ }
|
|
|
+ })
|
|
|
+ });
|
|
|
+ upload.render({
|
|
|
+ elem: '#btn_import'
|
|
|
+ , url: '/tenant/customer/import/'
|
|
|
+ , accept: 'file'
|
|
|
+ , acceptMime: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
|
|
|
+ , exts: 'xlsx'
|
|
|
+ , field: 'excel_file'
|
|
|
+ , done: function (res) {
|
|
|
+ if (res.code == 0) {
|
|
|
+ table.reload('customer_datagrid', {});
|
|
|
+ } else {
|
|
|
+ layer.msg(res.msg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ , error: function () {
|
|
|
+ layer.msg('导入失败');
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ //监听工具条
|
|
|
+ table.on('tool(customer-operate)', function (obj) {
|
|
|
+ var data = obj.data;
|
|
|
+ if (obj.event === 'customer_del') {
|
|
|
+ layer.confirm('确定要删除吗?', function (index) {
|
|
|
+ layer.close(index);
|
|
|
+ admin.req({
|
|
|
+ url: '/tenant/customer/' + data.id + '/'
|
|
|
+ , type: 'delete'
|
|
|
+ , done: function (res) {
|
|
|
+ table.reload('customer_datagrid', {});
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ } else if (obj.event === 'customer_edit') {
|
|
|
+ table.editdata = data;
|
|
|
+ layer.open({
|
|
|
+ type: 2,
|
|
|
+ title: '修改',
|
|
|
+ shadeClose: false,
|
|
|
+ area: ['50%', '60%'],
|
|
|
+ btn: ['保存', '取消'],
|
|
|
+ yes: function (index, dom) {
|
|
|
+ layui.onSubmitChild = function (data) {
|
|
|
+ layer.close(index);
|
|
|
+ table.reload('customer_datagrid', {});
|
|
|
+ };
|
|
|
+ layui.submitChild();
|
|
|
+ },
|
|
|
+ btn2: function (index, layero) {
|
|
|
+ layer.close(index);//关闭当前按钮
|
|
|
+ },
|
|
|
+ content: 'edit.html?id=' + data.id
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ form.on('submit(query-form-element1)', function (data) {
|
|
|
+ table.reload('customer_datagrid', {
|
|
|
+ where: data.field
|
|
|
+ , page: {curr: 1}
|
|
|
+ });
|
|
|
+ layer.closeAll();
|
|
|
+ return false
|
|
|
+ });
|
|
|
+
|
|
|
+ $('#customer_add').on('click', function () {
|
|
|
+ layer.open({
|
|
|
+ type: 2,
|
|
|
+ title: '添加',
|
|
|
+ area: ['50%', '60%'],
|
|
|
+ btn: ['保存', '取消'],
|
|
|
+ yes: function (index, dom) {
|
|
|
+ layui.onSubmitChild = function (data) {
|
|
|
+ layer.close(index);
|
|
|
+ table.reload('customer_datagrid', {});
|
|
|
+ };
|
|
|
+ layui.submitChild();
|
|
|
+ },
|
|
|
+ btn2: function (index, layero) {
|
|
|
+ layer.close(index);//关闭当前按钮
|
|
|
+ },
|
|
|
+ content: 'edit.html'
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+</html>
|