← 返回文章列表
⚠️ IMPORTANT HEALTH NOTICE: NuanXinYu provides general wellness and educational content. Our AI advisors are not licensed medical professionals and do not provide medical diagnoses, treatments, or prescriptions. If you have a medical condition or concern, please consult a qualified healthcare provider. In case of emergency, call your local emergency services immediately.

文章未找到

请从文章列表中选择一篇文章.

浏览文章
`; return; } const article = getArticleById(articleId); if (!article) { document.getElementById('article-content').innerHTML = `

文章未找到

您查找的文章不存在。

浏览文章
`; return; } // Check if user can read this article const currentUser = getCurrentUser(); let canRead = false; if (!article.premium) { canRead = true; } else if (currentUser && isPremiumUser(currentUser.id)) { canRead = true; } // Update page title document.title = article.title + ' - NuanXinYu'; // Render article const content = document.getElementById('article-content'); content.innerHTML = renderArticleContent(article, canRead); // Mark as read if user is logged in if (currentUser && canRead) { markArticleRead(currentUser.id, article.id); } } document.addEventListener('DOMContentLoaded', loadArticle);