mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
34 lines
792 B
JavaScript
34 lines
792 B
JavaScript
|
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',
|
||
|
});
|
||
|
});
|
||
|
}
|