TaoLer/public/static/admin/modules/common.js
2020-01-01 13:17:19 +08:00

51 lines
1.0 KiB
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.

/**
@NamelayuiAdmin 公共业务
@Author贤心
@Sitehttp://www.layui.com/admin/
@LicenseLPPL
*/
layui.define(function(exports){
var $ = layui.$
,layer = layui.layer
,laytpl = layui.laytpl
,setter = layui.setter
,view = layui.view
,admin = layui.admin
//公共业务的逻辑处理可以写在此处,切换任何页面都会执行
//……
//退出
admin.events.logout = function(){
//执行退出接口
admin.req({
url: '/admin/user/logout'
,type: 'get'
,data: {}
,done: function(res){ //这里要说明一下done 是只有 response 的 code 正常才会执行。而 succese 则是只要 http 为 200 就会执行
//清空本地记录的 token并跳转到登入页
admin.exit(function(){
layer.msg(res.msg,{
icon:1,
time:2000
}, function(){
location.href = '/admin/login/index';
});
//location.href = '/admin/login/index';
});
}
});
};
//对外暴露的接口
exports('common', {});
});