nezha/resource/static/theme-mdui/mdui.js

34 lines
792 B
JavaScript
Raw Normal View History

2022-01-08 10:54:24 -05:00
function showConfirm(title, content, callFn, extData) {
mdui.confirm(content, title,
function(){
callFn(extData);
});
}
function logout(id) {
$.post("/api/logout", JSON.stringify({ id: id }))
.done(function (resp) {
if (resp.code == 200) {
mdui.snackbar({
message: '注销成功',
timeout: 2000,
position: 'top',
});
window.location.reload();
} else {
mdui.snackbar({
message: '注销失败(Error ' + resp.code + '): ' + resp.message,
timeout: 5000,
position: 'top',
});
}
})
.fail(function (err) {
mdui.snackbar({
message: '网络错误: ' + err.responseText,
timeout: 5000,
position: 'top',
});
});
}