diff --git a/pages/user/user.html b/pages/user/user.html
index 83cd475..74a9f7f 100644
--- a/pages/user/user.html
+++ b/pages/user/user.html
@@ -31,22 +31,6 @@
-
-
-
-
-
-
- 共有数据: 条
-
@@ -80,7 +64,7 @@
limit: 10,
page: true,
toolbar: true,
- toolbar: "default",
+ toolbar: "#toolbarTpl",
cols: [[
{type: "checkbox"},
{field: "id", title: "ID", width: 80, sort: true},
@@ -95,7 +79,7 @@
{title: "操作", width: 200, align: 'center', templet: "#operationTpl"}
]],
done: function (res, curr, count) {
- $("#countNum").text(count);
+ console.log(res, curr, count)
}
});
@@ -104,6 +88,24 @@
return false;
});
+ table.on("toolbar(tableFilter)", function (obj) {
+ var data = obj.data;
+ switch (obj.event) {
+ case "batchEnabled":
+ batchEnabled();
+ break;
+ case "batchDisabled":
+ batchDisabled();
+ break;
+ case "batchDel":
+ batchDel();
+ break;
+ case "add":
+ add();
+ break;
+ }
+ });
+
table.on("tool(tableFilter)", function (obj) {
var data = obj.data;
switch (obj.event) {
@@ -113,64 +115,59 @@
case "del":
del(data.id);
break;
- case "add":
- layer.msg("编辑");
- break;
}
});
- $("#batchEnabled").click(function () {
- okLayer.confirm("确定要批量启用吗?", function (index) {
- layer.close(index);
- var idsStr = okUtils.table.batchCheck(table);
- console.log("idsStr-->" + idsStr)
- // ajax请求后台api
- if (idsStr) {
- okUtils.ajax("/user/batchNormal", "post", {idsStr: idsStr}).done(function (response) {
- console.log(response)
- okUtils.table.operationSuccessMsg("批量启用成功");
- }).fail(function (error) {
- console.log(error)
- });
- }
- });
- })
+ function batchEnabled () {
+ okLayer.confirm("确定要批量启用吗?", function (index) {
+ layer.close(index);
+ var idsStr = okUtils.table.batchCheck(table);
+ if (idsStr) {
+ okUtils.ajax("/user/batchNormal", "post", {idsStr: idsStr}).done(function (response) {
+ console.log(response)
+ okUtils.table.operationSuccessMsg("批量启用成功");
+ }).fail(function (error) {
+ console.log(error)
+ });
+ }
+ });
+ }
+
+ function batchDisabled () {
+ okLayer.confirm("确定要批量停用吗?", function (index) {
+ layer.close(index);
+ var idsStr = okUtils.table.batchCheck(table);
+ if (idsStr) {
+ okUtils.ajax("/user/batchStop", "post", {idsStr: idsStr}).done(function (response) {
+ console.log(response)
+ okUtils.table.operationSuccessMsg("批量停用成功");
+ }).fail(function (error) {
+ console.log(error)
+ });
+ }
+ });
+ }
- $("#batchDisabled").click(function () {
- okLayer.confirm("确定要批量停用吗?", function (index) {
- layer.close(index);
- var idsStr = okUtils.table.batchCheck(table);
- if (idsStr) {
- okUtils.ajax("/user/batchStop", "post", {idsStr: idsStr}).done(function (response) {
- console.log(response)
- okUtils.table.operationSuccessMsg("批量停用成功");
- }).fail(function (error) {
- console.log(error)
- });
- }
- });
- })
+ function batchDel () {
+ okLayer.confirm("确定要批量删除吗?", function (index) {
+ layer.close(index);
+ var idsStr = okUtils.table.batchCheck(table);
+ if (idsStr) {
+ okUtils.ajax("/user/batchDel", "post", {idsStr: idsStr}).done(function (response) {
+ console.log(response)
+ okUtils.table.operationSuccessMsg("批量删除成功");
+ }).fail(function (error) {
+ console.log(error)
+ });
+ }
+ });
+ }
- $("#batchDel").click(function () {
- okLayer.confirm("确定要批量删除吗?", function (index) {
- layer.close(index);
- var idsStr = okUtils.table.batchCheck(table);
- if (idsStr) {
- okUtils.ajax("/user/batchDel", "post", {idsStr: idsStr}).done(function (response) {
- console.log(response)
- okUtils.table.operationSuccessMsg("批量删除成功");
- }).fail(function (error) {
- console.log(error)
- });
- }
- });
- })
-
- $("#addUser").click(function () {
- okLayer.open("添加用户", "user-add.html", "90%", "90%", function () {
+ function add () {
+ okLayer.open("添加用户", "user-add.html", "90%", "90%", function () {
$(".layui-laypage-btn")[0].click();
})
- })
+ }
function edit (id) {
okLayer.open("编辑用户", "user-edit.html?id=" + id, "90%", "90%", function () {
@@ -190,13 +187,24 @@
}
})
-
+
+
+
+
+