BootstrapAdmin/Bootstrap.Admin/Content/js/log.js

30 lines
952 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var saveLog = function (options,otype) {
$.ajax({
url: "../api/Logs",
type: "POST",
data: CreateOperationData(options,otype),
success: function (result) {
if (result) {
}
}
});
}
function CreateOperationData(options,otype) {
var nameStr = $.cookie("lgb____bd____cp");
nameStr = nameStr.substring("realUserName=".length, nameStr.indexOf("&"));
var operationType;
if (otype == "POST") {
//0表示新增1表示修改
operationType = options.data.ID == 0 ? 0 : 1;
} else if (otype == "DELETE") {
//2表示删除
operationType = 2;
}
//operationModule表示修改的模块
var operationModule = options.url.substring(options.url.lastIndexOf("/") + 1, options.url.length);
var postdata = { OperationType: operationType, UserName: nameStr, Remark: "", OperationModule: operationModule };
return postdata;
}