mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-14 20:41:38 +08:00
后台管理前端结构调整;管理员后台添加第三方账号绑定
This commit is contained in:
18
bookshelfplus-frontend/views/dashboard/admin/Debug.html
Normal file
18
bookshelfplus-frontend/views/dashboard/admin/Debug.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<script>
|
||||
postRequest('/debug/status', { token: localStorage.token })
|
||||
.then(function (response) {
|
||||
var axiosData = response.data;
|
||||
var status = axiosData.status;
|
||||
var data = axiosData.data;
|
||||
|
||||
if (status === "success") {
|
||||
console.log(data);
|
||||
$(".main").html("请在 F12 查看");
|
||||
} else {
|
||||
alert(`出错啦!${data.errMsg} (错误码: ${data.errCode}) `);
|
||||
}
|
||||
}).catch(function (error) {
|
||||
console.log(error);
|
||||
alert("无法连接到服务器,请检查网络连接!");
|
||||
});
|
||||
</script>
|
Reference in New Issue
Block a user