Add theme-mdui.

This commit is contained in:
Mikoy From ThinkPad
2022-01-08 23:54:24 +08:00
parent 87ba69ff8b
commit 9d9a3b093f
9 changed files with 580 additions and 1 deletions

33
resource/static/theme-mdui/mdui.js vendored Normal file
View File

@@ -0,0 +1,33 @@
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',
});
});
}