Files
ai_wht_wechat/figma_html_page/js/generate-content.js
2026-01-06 19:36:42 +08:00

13 lines
272 B
JavaScript

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