285 lines
8.8 KiB
HTML
285 lines
8.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>付费学员管理</title>
|
|
{% include 'admin/common/header.html' %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='/admin/admin/css/other/user.css') }}"/>
|
|
</head>
|
|
|
|
<body class="pear-container">
|
|
{# 查询表单 #}
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<form class="layui-form" action="" lay-filter="user-query-form">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">用户</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" name="username" placeholder="" class="layui-input">
|
|
</div>
|
|
<label class="layui-form-label">微信</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" name="wx" placeholder="" class="layui-input">
|
|
</div>
|
|
<button class="pear-btn pear-btn-md pear-btn-primary" lay-submit lay-filter="user-query">
|
|
<i class="layui-icon layui-icon-search"></i>
|
|
查询
|
|
</button>
|
|
<button type="reset" class="pear-btn pear-btn-md">
|
|
<i class="layui-icon layui-icon-refresh"></i>
|
|
重置
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{#影藏侧边栏#}
|
|
<div class="user-left user-collasped">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<div class="button button-primary user-group" user-group="1"> 进阶课</div>
|
|
<div class="button button-default user-group" user-group="2"> 爬虫课</div>
|
|
<div class="button button-default user-group" user-group="3"> 数据分析课</div>
|
|
<div style="overflow: auto">
|
|
{# <ul id="dept-tree" class="dept-tree" data-id="0"></ul>#}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{# 用户表格 #}
|
|
<div class="user-main user-collasped">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<table id="user-table" lay-filter="user-table"></table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
{% include 'admin/common/footer.html' %}
|
|
{# 用户更新时间 #}
|
|
<script type="text/html" id="user-updateTime">
|
|
{{ ' {{layui.util.toDateString(d.update_at, "yyyy-MM-dd HH:mm:ss")}' |safe }}}
|
|
</script>
|
|
{# 表格操作 #}
|
|
<script type="text/html" id="user-toolbar">
|
|
<button class="pear-btn pear-btn-primary pear-btn-md" lay-event="add">
|
|
<i class="pear-icon pear-icon-add"></i>
|
|
新增
|
|
</button>
|
|
|
|
<button class="pear-btn pear-btn-md" lay-event="batchRemove">
|
|
<i class="pear-icon pear-icon-ashbin"></i>
|
|
删除
|
|
</button>
|
|
|
|
<button class="pear-btn pear-btn-md" lay-event="collasped">
|
|
<i class="pear-icon pear-icon-modular"></i>
|
|
高级
|
|
</button>
|
|
</script>
|
|
{# 用户修改操作 #}
|
|
<script type="text/html" id="user-bar">
|
|
<button class="pear-btn pear-btn-primary pear-btn-sm" lay-event="edit">
|
|
<i class="pear-icon pear-icon-edit"></i>
|
|
</button>
|
|
<button class="pear-btn pear-btn-danger pear-btn-sm" lay-event="remove">
|
|
<i class="pear-icon pear-icon-ashbin"></i>
|
|
</button>
|
|
</script>
|
|
<script>
|
|
layui.use(['table', 'dtree', 'form', 'jquery', 'popup', 'common'], function () {
|
|
let table = layui.table
|
|
let form = layui.form
|
|
let $ = layui.jquery
|
|
let dtree = layui.dtree
|
|
let popup = layui.popup
|
|
let common = layui.common
|
|
let MODULE_PATH = '/vip/'
|
|
|
|
// 表格数据
|
|
let cols = [
|
|
[
|
|
{#{ type: 'checkbox' },#}
|
|
{ title: 'ID', field: 'id', align: 'center', width: 110 },
|
|
{ title: '期数', field: 'phase', align: 'center', width: 110 },
|
|
{ title: '用户名', field: 'username', align: 'center', width: 110 },
|
|
{ title: '电话号码', field: 'mobile', align: 'center', hide: true },
|
|
{ title: '身份证号', field: 'id_card', align: 'center', hide: true },
|
|
{ title: '微信号', field: 'wx', align: 'center' },
|
|
{ title: 'QQ号', field: 'qq', align: 'center' },
|
|
{ title: '报名账号', field: 'account', align: 'center' },
|
|
{ title: '学号', field: 'number', align: 'center' },
|
|
{ title: '创建时间', field: 'create_at', templet: '#user-updateTime', align: 'center' },
|
|
{ title: '操作', toolbar: '#user-bar', align: 'center', width: 130 }
|
|
]
|
|
]
|
|
|
|
// 渲染表格数据
|
|
table.render({
|
|
elem: '#user-table',
|
|
url: MODULE_PATH + 'data',
|
|
page: true,
|
|
cols: cols,
|
|
skin: 'line',
|
|
height: 'full-148',
|
|
toolbar: '#user-toolbar', /*工具栏*/
|
|
text: { none: '暂无人员信息' },
|
|
defaultToolbar: [{ layEvent: 'refresh', icon: 'layui-icon-refresh' }, 'filter', 'print', 'exports'] /*默认工具栏*/
|
|
})
|
|
|
|
//
|
|
$('.user-group').click(function () {
|
|
let group = $(this).attr('user-group')
|
|
let field = form.val('user-query-form')
|
|
field.class_level = group
|
|
$(this).removeClass('button-default')
|
|
$(this).siblings().removeClass('button-primary')
|
|
$(this).siblings().addClass('button-default')
|
|
$(this).addClass('button-primary')
|
|
|
|
window.refresh(field)
|
|
})
|
|
|
|
table.on('tool(user-table)', function (obj) {
|
|
if (obj.event === 'remove') {
|
|
window.remove(obj)
|
|
} else if (obj.event === 'edit') {
|
|
window.edit(obj)
|
|
}
|
|
})
|
|
|
|
table.on('toolbar(user-table)', function (obj) {
|
|
if (obj.event === 'add') {
|
|
window.add()
|
|
} else if (obj.event === 'refresh') {
|
|
window.refresh()
|
|
} else if (obj.event === 'batchRemove') {
|
|
window.batchRemove(obj)
|
|
} else if (obj.event === 'collasped') {
|
|
$('.user-left').toggleClass('user-collasped')
|
|
$('.user-main').toggleClass('user-collasped')
|
|
table.resize()
|
|
}
|
|
})
|
|
|
|
form.on('submit(user-query)', function (data) {
|
|
window.refresh(data.field)
|
|
return false
|
|
})
|
|
|
|
form.on('switch(user-enable)', function (obj) {
|
|
let operate
|
|
if (obj.elem.checked) {
|
|
operate = 1
|
|
} else {
|
|
operate = 0
|
|
}
|
|
let loading = layer.load()
|
|
$.ajax({
|
|
url: MODULE_PATH + 'enable',
|
|
data: JSON.stringify({ operate: operate, userId: this.value }),
|
|
dataType: 'json',
|
|
contentType: 'application/json',
|
|
type: 'put',
|
|
success: function (result) {
|
|
layer.close(loading)
|
|
if (result.success) {
|
|
popup.success(result.msg)
|
|
} else {
|
|
popup.failure(result.msg)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
window.add = function () {
|
|
layer.open({
|
|
type: 2,
|
|
title: '新增',
|
|
shade: 0.1,
|
|
area: ['550px', '550px'],
|
|
content: MODULE_PATH + 'add'
|
|
})
|
|
}
|
|
|
|
window.edit = function (obj) {
|
|
layer.open({
|
|
type: 2,
|
|
title: '修改',
|
|
shade: 0.1,
|
|
area: ['550px', '500px'],
|
|
content: MODULE_PATH + obj.data['id']
|
|
})
|
|
}
|
|
|
|
window.remove = function (obj) {
|
|
layer.confirm('确定要删除该用户', { icon: 3, title: '提示' }, function (index) {
|
|
layer.close(index)
|
|
let loading = layer.load()
|
|
$.ajax({
|
|
url: MODULE_PATH + 'remove/' + obj.data['id'],
|
|
dataType: 'json',
|
|
type: 'delete',
|
|
success: function (result) {
|
|
layer.close(loading)
|
|
if (result.success) {
|
|
popup.success(result.msg, function () {
|
|
obj.del()
|
|
})
|
|
} else {
|
|
popup.failure(result.msg)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
window.batchRemove = function (obj) {
|
|
let data = table.checkStatus(obj.config.id).data
|
|
if (data.length === 0) {
|
|
layer.msg('未选中数据', {
|
|
icon: 3,
|
|
time: 1000
|
|
})
|
|
return false
|
|
}
|
|
var ids = []
|
|
var hasCheck = table.checkStatus('user-table')
|
|
var hasCheckData = hasCheck.data
|
|
if (hasCheckData.length > 0) {
|
|
$.each(hasCheckData, function (index, element) {
|
|
ids.push(element.id)
|
|
})
|
|
}
|
|
{#console.log(ids);#}
|
|
layer.confirm('确定要删除选中角色', {
|
|
icon: 3,
|
|
title: '提示'
|
|
}, function (index) {
|
|
layer.close(index)
|
|
let loading = layer.load()
|
|
$.ajax({
|
|
|
|
url: MODULE_PATH + 'batchRemove',
|
|
data: { ids: ids },
|
|
dataType: 'json',
|
|
type: 'delete',
|
|
success: function (result) {
|
|
layer.close(loading)
|
|
if (result.success) {
|
|
popup.success(result.msg, function () {
|
|
table.reload('role-table')
|
|
})
|
|
} else {
|
|
popup.failure(result.msg)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
window.refresh = function (param) {
|
|
table.reload('user-table', { where: param })
|
|
}
|
|
})
|
|
</script>
|
|
</html> |