2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 18:27:13 +08:00
Files
panel/public/res/modules/useradmin.js
2023-06-22 00:09:56 +08:00

178 lines
5.7 KiB
JavaScript

/**
* useradmin demo
*/
layui.define(['table', 'form'], function (exports) {
var $ = layui.$
, admin = layui.admin
, view = layui.view
, table = layui.table
, form = layui.form
//用户管理
table.render({
elem: '#LAY-user-manage'
, url: './res/json/useradmin/webuser.js' //模拟接口
, cols: [[
{ type: 'checkbox', fixed: 'left' }
, { field: 'id', width: 100, title: 'ID', sort: true }
, { field: 'username', title: '用户名', minWidth: 100 }
, { field: 'avatar', title: '头像', width: 100, templet: '#imgTpl' }
, { field: 'phone', title: '手机' }
, { field: 'email', title: '邮箱' }
, { field: 'sex', width: 80, title: '性别' }
, { field: 'ip', title: 'IP' }
, { field: 'jointime', title: '加入时间', sort: true }
, { title: '操作', width: 150, align: 'center', fixed: 'right', toolbar: '#table-useradmin-webuser' }
]]
, page: true
, limit: 30
, height: 'full-320'
, text: '对不起,加载出现异常!'
})
//工具条
table.on('tool(LAY-user-manage)', function (obj) {
var data = obj.data
if (obj.event === 'del') {
layer.prompt({
formType: 1
, title: '敏感操作,请验证口令'
}, function (value, index) {
layer.close(index)
layer.confirm('真的删除行么', function (index) {
obj.del()
layer.close(index)
})
})
} else if (obj.event === 'edit') {
admin.popup({
title: '编辑用户'
, area: ['500px', '450px']
, id: 'LAY-popup-user-add'
, success: function (layero, index) {
view(this.id).render('user/user/userform', data).done(function () {
form.render(null, 'layuiadmin-form-useradmin')
//提交
form.on('submit(LAY-user-front-submit)', function (data) {
var field = data.field //获取提交的字段
//提交 Ajax 成功后,关闭当前弹层并重载表格
//$.ajax({});
layui.table.reload('LAY-user-manage') //重载表格
layer.close(index) //执行关闭
})
})
}
})
}
})
//管理员管理
table.render({
elem: '#LAY-user-back-manage'
, url: './res/json/useradmin/mangadmin.js' //模拟接口
, cols: [[
{ type: 'checkbox', fixed: 'left' }
, { field: 'id', width: 80, title: 'ID', sort: true }
, { field: 'loginname', title: '登录名' }
, { field: 'telphone', title: '手机' }
, { field: 'email', title: '邮箱' }
, { field: 'role', title: '角色' }
, { field: 'jointime', title: '加入时间', sort: true }
, { field: 'check', title: '审核状态', templet: '#buttonTpl', minWidth: 80, align: 'center' }
, { title: '操作', width: 150, align: 'center', fixed: 'right', toolbar: '#table-useradmin-admin' }
]]
, text: '对不起,加载出现异常!'
})
//工具条
table.on('tool(LAY-user-back-manage)', function (obj) {
var data = obj.data
if (obj.event === 'del') {
layer.prompt({
formType: 1
, title: '敏感操作,请验证口令'
}, function (value, index) {
layer.close(index)
layer.confirm('确定删除此管理员?', function (index) {
console.log(obj)
obj.del()
layer.close(index)
})
})
} else if (obj.event === 'edit') {
admin.popup({
title: '编辑管理员'
, area: ['420px', '450px']
, id: 'LAY-popup-user-add'
, success: function (layero, index) {
view(this.id).render('user/administrators/adminform', data).done(function () {
form.render(null, 'layuiadmin-form-admin')
//提交
form.on('submit(LAY-user-back-submit)', function (data) {
var field = data.field //获取提交的字段
//提交 Ajax 成功后,关闭当前弹层并重载表格
//$.ajax({});
layui.table.reload('LAY-user-back-manage') //重载表格
layer.close(index) //执行关闭
})
})
}
})
}
})
//角色管理
table.render({
elem: '#LAY-user-back-role'
, url: './res/json/useradmin/role.js' //模拟接口
, cols: [[
{ type: 'checkbox', fixed: 'left' }
, { field: 'id', width: 80, title: 'ID', sort: true }
, { field: 'rolename', title: '角色名' }
, { field: 'limits', title: '拥有权限' }
, { field: 'descr', title: '具体描述' }
, { title: '操作', width: 150, align: 'center', fixed: 'right', toolbar: '#table-useradmin-admin' }
]]
, text: '对不起,加载出现异常!'
})
//工具条
table.on('tool(LAY-user-back-role)', function (obj) {
var data = obj.data
if (obj.event === 'del') {
layer.confirm('确定删除此角色?', function (index) {
obj.del()
layer.close(index)
})
} else if (obj.event === 'edit') {
admin.popup({
title: '添加新角色'
, area: ['500px', '480px']
, id: 'LAY-popup-user-add'
, success: function (layero, index) {
view(this.id).render('user/administrators/roleform', data).done(function () {
form.render(null, 'layuiadmin-form-role')
//提交
form.on('submit(LAY-user-role-submit)', function (data) {
var field = data.field //获取提交的字段
//提交 Ajax 成功后,关闭当前弹层并重载表格
//$.ajax({});
layui.table.reload('LAY-user-back-role') //重载表格
layer.close(index) //执行关闭
})
})
}
})
}
})
exports('useradmin', {})
})