This commit is contained in:
sjk
2026-01-06 19:36:42 +08:00
parent 15b579d64a
commit 19942144fb
261 changed files with 24034 additions and 5477 deletions

View File

@@ -0,0 +1,12 @@
function regenerate() {
alert('正在重新生成内容...');
}
function publish() {
const isLoggedIn = localStorage.getItem('isLoggedIn');
if (!isLoggedIn) {
window.location.href = 'login.html';
} else {
alert('发布成功!');
}
}