OpenAuth.Net/OpenAuth.Mvc/wwwroot/userJs/resources.js

156 lines
4.7 KiB
JavaScript
Raw Normal View History

2018-04-13 07:10:02 +08:00
layui.config({
base: "/js/"
2024-07-19 16:39:29 +08:00
}).use(['form', 'ztree', 'layer', 'jquery', 'table', 'droptree', 'openauth', 'utils'], function () {
2018-04-13 07:10:02 +08:00
var form = layui.form,
layer = layui.layer,
$ = layui.jquery;
var table = layui.table;
var openauth = layui.openauth;
var toplayer = (top == undefined || top.layer === undefined) ? layer : top.layer; //顶层的LAYER
$("#menus").loadMenus("Resource");
2024-07-19 16:39:29 +08:00
var initVal = { //初始化的值
Id: "",
Name: '',
Description: "",
AppName: "",
AppId: ""
}
//加载表头
$.getJSON('/Resources/Load',
2024-07-19 16:39:29 +08:00
{page: 1, limit: 1},
function (data) {
var columns = data.columnFields.filter(u => u.IsList === true).map(function (e) {
return {
field: e.ColumnName,
title: e.Comment
2024-07-19 16:39:29 +08:00
};
});
columns.unshift({
type: 'checkbox',
fixed: 'left'
});
table.render({
elem: '#mainList',
page: true,
url: '/Resources/Load',
2024-07-19 16:39:29 +08:00
cols: [columns]
, response: {
statusCode: 200 //规定成功的状态码默认0
}
});
});
2018-04-13 16:18:30 +08:00
2018-04-13 07:10:02 +08:00
//主列表加载,可反复调用进行刷新
var config = {}; //table的参数如搜索key点击tree的id
2024-07-19 16:39:29 +08:00
var mainList = function (options) {
2018-04-13 07:10:02 +08:00
if (options != undefined) {
$.extend(config, options);
}
2018-04-13 16:18:30 +08:00
table.reload('mainList',
{
url: '/Resources/Load',
where: config
, response: {
statusCode: 200 //规定成功的状态码默认0
2024-07-19 16:39:29 +08:00
}
2018-04-13 07:10:02 +08:00
});
2018-04-13 16:18:30 +08:00
};
mainList();
2024-07-19 16:39:29 +08:00
2018-04-13 07:10:02 +08:00
//添加(编辑)对话框
var editDlg = function () {
2024-07-19 16:39:29 +08:00
var show = function (update, data) {
2018-04-13 07:10:02 +08:00
var title = update ? "编辑信息" : "添加";
layer.open({
title: title,
area: ["500px", "400px"],
type: 1,
content: $('#divEdit'),
success: function () {
2024-07-19 16:39:29 +08:00
layui.droptree("/Applications/GetList", "#AppName", "#AppId", false);
if (data == undefined) {
form.val("formEdit", initVal);
} else {
form.val("formEdit", data);
}
2018-04-13 07:10:02 +08:00
},
end: mainList
});
var url = "/Resources/Add";
if (update) {
url = "/Resources/Update";
}
//提交数据
form.on('submit(formSubmit)',
function (data) {
$.post(url,
data.field,
function (data) {
layer.msg(data.Message);
},
"json");
return false;
});
}
return {
add: function () { //弹出添加
2024-07-19 16:39:29 +08:00
show(false);
2018-04-13 07:10:02 +08:00
},
update: function (data) { //弹出编辑框
2024-07-19 16:39:29 +08:00
show(true, data);
2018-04-13 07:10:02 +08:00
}
};
}();
//监听表格内部按钮
table.on('tool(list)', function (obj) {
var data = obj.data;
if (obj.event === 'detail') { //查看
layer.msg('ID' + data.Id + ' 的查看操作');
}
});
//监听页面主按钮操作
var active = {
btnDel: function () { //批量删除
var checkStatus = table.checkStatus('mainList')
, data = checkStatus.data;
openauth.del("/Resources/Delete",
2024-07-19 16:39:29 +08:00
data.map(function (e) {
return e.Id;
}),
2018-04-13 07:10:02 +08:00
mainList);
}
, btnAdd: function () { //添加
editDlg.add();
}
, btnEdit: function () { //编辑
var checkStatus = table.checkStatus('mainList')
, data = checkStatus.data;
if (data.length != 1) {
layer.msg("请选择编辑的行,且同时只能编辑一行");
return;
}
editDlg.update(data[0]);
}
, search: function () { //搜索
2024-07-19 16:39:29 +08:00
mainList({key: $('#key').val()});
2018-04-13 07:10:02 +08:00
}
, btnRefresh: function () {
mainList();
}
};
$('.toolList .layui-btn').on('click', function () {
var type = $(this).data('type');
active[type] ? active[type].call(this) : '';
});
//监听页面主按钮操作 end
})