mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
153 lines
4.8 KiB
JavaScript
153 lines
4.8 KiB
JavaScript
layui.config({
|
||
base: "/js/"
|
||
}).use(['form','vue', 'ztree', 'layer', 'jquery', 'table','droptree','openauth'], function () {
|
||
var form = layui.form,
|
||
//layer = (parent == undefined || parent.layer === undefined )? layui.layer : parent.layer,
|
||
layer = layui.layer,
|
||
$ = layui.jquery;
|
||
var table = layui.table;
|
||
var openauth = layui.openauth;
|
||
layui.droptree("/Categories/AllTypes", "#TypeName", "#TypeId", false);
|
||
|
||
//主列表加载,可反复调用进行刷新
|
||
var config= {}; //table的参数,如搜索key,点击tree的id
|
||
var mainList = function (options) {
|
||
if (options != undefined) {
|
||
$.extend(config, options);
|
||
}
|
||
table.reload('mainList', {
|
||
url: '/Categories/All',
|
||
where: config
|
||
});
|
||
}
|
||
//左边树状机构列表
|
||
var ztree = function () {
|
||
var url = '/Categories/AllTypes';
|
||
var zTreeObj;
|
||
var setting = {
|
||
view: { selectedMulti: false },
|
||
data: {
|
||
key: {
|
||
name: 'Name',
|
||
title: 'Name'
|
||
},
|
||
simpleData: {
|
||
enable: true,
|
||
idKey: 'Id',
|
||
pIdKey: 'ParentId',
|
||
rootPId: 'null'
|
||
}
|
||
},
|
||
callback: {
|
||
onClick: function (event, treeId, treeNode) {
|
||
mainList({ typeId: treeNode.Id });
|
||
}
|
||
}
|
||
};
|
||
var load = function () {
|
||
$.getJSON(url, function (json) {
|
||
zTreeObj = $.fn.zTree.init($("#tree"), setting, json);
|
||
mainList({ typeId: json[0].Id });
|
||
zTreeObj.expandAll(true);
|
||
});
|
||
};
|
||
load();
|
||
return {
|
||
reload: load
|
||
}
|
||
}();
|
||
|
||
//添加(编辑)对话框
|
||
var editDlg = function() {
|
||
var vm = new Vue({
|
||
el: "#formEdit"
|
||
});
|
||
var update = false; //是否为更新
|
||
var show = function (data) {
|
||
var title = update ? "编辑信息" : "添加";
|
||
layer.open({
|
||
title: title,
|
||
area: ["500px", "400px"],
|
||
type: 1,
|
||
content: $('#divEdit'),
|
||
success: function() {
|
||
vm.$set('$data', data);
|
||
},
|
||
end: mainList
|
||
});
|
||
var url = "/Categories/Add";
|
||
if (update) {
|
||
url = "/Categories/Update"; //暂时和添加一个地址
|
||
}
|
||
//提交数据
|
||
form.on('submit(formSubmit)',
|
||
function(data) {
|
||
$.post(url,
|
||
data.field,
|
||
function(data) {
|
||
layer.msg(data.Message);
|
||
},
|
||
"json");
|
||
return false;
|
||
});
|
||
}
|
||
return {
|
||
add: function() { //弹出添加
|
||
update = false;
|
||
show({
|
||
Id: ''
|
||
});
|
||
},
|
||
update: function(data) { //弹出编辑框
|
||
update = true;
|
||
show(data);
|
||
}
|
||
};
|
||
}();
|
||
|
||
//监听表格内部按钮
|
||
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("/Categories/Delete",
|
||
data.map(function (e) { return e.Id; }),
|
||
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 () { //搜索
|
||
mainList({ key: $('#key').val() });
|
||
}
|
||
, btnRefresh: function() {
|
||
mainList();
|
||
}
|
||
};
|
||
|
||
$('.toolList .layui-btn').on('click', function () {
|
||
var type = $(this).data('type');
|
||
active[type] ? active[type].call(this) : '';
|
||
});
|
||
|
||
//监听页面主按钮操作 end
|
||
}) |