layui.config({
layimPath: '/static/lib/layui/extends/layim/',
layimAssetsPath: '/static/lib/layui/extends/layim/assets/',
}).extend({
layim: layui.cache.layimPath + 'layim',
layarea: '/static/lib/layui/extends/layarea',
helper: '/static/lib/layui/extends/helper',
});
layui.use(['jquery', 'form', 'element', 'layer', 'helper'], function () {
var $ = layui.jquery;
var form = layui.form;
var layer = layui.layer;
var helper = layui.helper;
var $token = $('meta[name="csrf-token"]');
$.ajaxSetup({
beforeSend: function (xhr) {
xhr.setRequestHeader('X-Csrf-Token', $token.attr('content'));
},
statusCode: {
400: function (xhr) {
var res = JSON.parse(xhr.responseText);
layer.msg(res.msg, {icon: 2, anim: 6});
},
401: function () {
layer.msg('操作之前请先登录', {icon: 2, anim: 6});
},
403: function () {
layer.msg('操作受限', {icon: 2, anim: 6});
},
404: function () {
layer.msg('资源不存在', {icon: 2, anim: 6});
},
500: function () {
layer.msg('服务器内部错误', {icon: 2, anim: 6});
}
}
});
setInterval(function () {
$.ajax({
type: 'POST',
url: '/token/refresh',
success: function (res) {
$token.attr('content', res.token);
}
});
}, 300000);
if (window.user.id > 0) {
setInterval(function () {
$.get('/uc/notify/stats', function (res) {
var $notifyDot = $('#notify-dot');
if (res.stats.notice_count > 0) {
$notifyDot.addClass('layui-badge-dot');
} else {
$notifyDot.removeClass('layui-badge-dot');
}
});
}, 30000);
setInterval(function () {
$.post('/uc/online');
}, 60000);
}
form.on('submit(go)', function (data) {
var submit = $(this);
submit.attr('disabled', 'disabled').addClass('layui-btn-disabled');
$.ajax({
type: 'POST',
url: data.form.action,
data: data.field,
success: function (res) {
if (res.msg) {
layer.msg(res.msg, {icon: 1});
}
if (res.location) {
var target = res.target || 'self';
setTimeout(function () {
if (target === 'parent') {
parent.location.href = res.location;
} else {
window.location.href = res.location;
}
}, 1500);
} else {
submit.removeAttr('disabled').removeClass('layui-btn-disabled');
}
},
error: function () {
submit.removeAttr('disabled').removeClass('layui-btn-disabled');
}
});
return false;
});
$('.kg-delete').on('click', function () {
var url = $(this).data('url');
var tips = $(this).data('tips');
tips = tips || '确定要删除吗?';
layer.confirm(tips, function () {
$.ajax({
type: 'POST',
url: url,
success: function (res) {
if (res.msg !== '') {
layer.msg(res.msg, {icon: 1});
}
if (res.location) {
setTimeout(function () {
window.location.href = res.location;
}, 1500);
} else {
setTimeout(function () {
window.location.reload();
}, 1500);
}
}
});
});
});
$('.kg-back').on('click', function () {
window.history.back();
});
$('.markdown-body').on('click', 'img', function () {
var width = $(window).width() * 0.8 + 'px';
var height = $(window).height() * 0.8 + 'px';
var src = $(this).attr('src');
var style = 'max-width:' + width + ';max-height:' + height;
var content = '';
layer.open({
type: 1,
title: false,
closeBtn: 0,
area: ['auto'],
skin: 'layui-layer-nobg',
shadeClose: true,
content: content,
});
});
$('.nav-search').on('click', function () {
var content = '