2016-11-15 18:44:54 +08:00
|
|
|
|
$(function () {
|
2016-11-17 21:36:02 +08:00
|
|
|
|
var url = '../api/Exceptions/';
|
2016-11-15 18:44:54 +08:00
|
|
|
|
var $dialog = $('#dialogNew');
|
|
|
|
|
var $dataForm = $('#dataForm');
|
|
|
|
|
var $dataFormDetail = $('#dataFormDetail');
|
|
|
|
|
var $errorList = $('#errorList');
|
|
|
|
|
var $errorDetail = $('#errorDetail');
|
|
|
|
|
var $errorDetailTitle = $('#myDetailModalLabel');
|
|
|
|
|
|
2016-11-17 21:36:02 +08:00
|
|
|
|
var bsa = new BootstrapAdmin({
|
|
|
|
|
url: url,
|
|
|
|
|
validateForm: null
|
|
|
|
|
});
|
|
|
|
|
|
2016-11-15 18:44:54 +08:00
|
|
|
|
$('table').smartTable({
|
2016-11-17 21:36:02 +08:00
|
|
|
|
url: url,
|
2016-11-16 22:52:34 +08:00
|
|
|
|
sortName: 'LogTime',
|
2016-11-17 21:36:02 +08:00
|
|
|
|
queryParams: function (params) { return $.extend(params, { StartTime: $("#txt_operate_start").val(), EndTime: $("#txt_operate_end").val() }); },
|
2016-11-29 12:59:37 +08:00
|
|
|
|
columns: [
|
2016-11-17 21:36:02 +08:00
|
|
|
|
{ title: "请求网址", field: "ErrorPage", sortable: true },
|
|
|
|
|
{ title: "用户名", field: "UserID", sortable: true },
|
|
|
|
|
{ title: "IP", field: "UserIp", sortable: true },
|
2016-11-15 18:44:54 +08:00
|
|
|
|
{ title: "错误", field: "Message", sortable: false },
|
2016-11-16 22:52:34 +08:00
|
|
|
|
{ title: "记录时间", field: "LogTime", sortable: true }
|
2016-11-15 18:44:54 +08:00
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
2016-11-29 12:59:37 +08:00
|
|
|
|
$('.form_date').datetimepicker({
|
|
|
|
|
language: 'zh-CN',
|
|
|
|
|
weekStart: 1,
|
|
|
|
|
todayBtn: 1,
|
|
|
|
|
autoclose: 1,
|
|
|
|
|
todayHighlight: 1,
|
|
|
|
|
startView: 2,
|
|
|
|
|
minView: 2,
|
|
|
|
|
forceParse: 0,
|
|
|
|
|
format: 'yyyy-mm-dd',
|
|
|
|
|
pickerPosition: 'bottom-left'
|
2016-11-15 18:44:54 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#btn_view').on('click', function (row) {
|
2016-11-18 20:49:44 +08:00
|
|
|
|
$.bc({
|
|
|
|
|
Id: "", url: Exceptions.url, swal: false,
|
|
|
|
|
callback: function (result) {
|
|
|
|
|
var html = result.map(function (ele) {
|
|
|
|
|
return $.format('<div class="form-group col-lg-3 col-md-3 col-sm-4 col-xs-6"><a class="logfile" href="#"><i class="fa fa-file-text-o"></i><span>{0}</span></a></div>', ele);
|
|
|
|
|
}).join('');
|
|
|
|
|
$dataForm.children('div').html(html);
|
|
|
|
|
}
|
2016-11-15 18:44:54 +08:00
|
|
|
|
});
|
|
|
|
|
$dialog.modal('show');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$dialog.on('click', 'a', function () {
|
2016-11-17 21:36:02 +08:00
|
|
|
|
var fileName = $(this).find('span').text();
|
2016-11-15 18:44:54 +08:00
|
|
|
|
$errorDetailTitle.text(fileName);
|
|
|
|
|
$errorList.hide();
|
|
|
|
|
$errorDetail.show();
|
|
|
|
|
$dataFormDetail.html('<div class="text-center"><i class="fa fa-spinner fa-pulse fa-3x fa-fw"></i></div>');
|
2016-11-18 20:49:44 +08:00
|
|
|
|
$.bc({
|
|
|
|
|
Id: "", url: Exceptions.url, method: "PUT", swal: false, data: { "": fileName },
|
|
|
|
|
callback: function (result) {
|
|
|
|
|
$dataFormDetail.html(result);
|
|
|
|
|
}
|
2016-11-15 18:44:54 +08:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$errorDetail.on('click', 'button', function () {
|
|
|
|
|
$errorDetail.hide();
|
|
|
|
|
$errorList.show();
|
|
|
|
|
});
|
2016-11-11 21:44:41 +08:00
|
|
|
|
});
|