update: 切换品牌至 TeaLab / SI · 空间智能与自主设计
- 全站品牌替换:DAEL / Design AI & Ecology Lab → TeaLab / SI · 空间智能与自主设计 * 11 个 HTML 页面 title、navbar、页脚、版权统一更新 * Logo 字母 D → T,配色与版式不变 * js/common.js 注释 + localStorage 计数键更新 * backend/app.py /api/health 文案更新 - website.html 内容重写 * Hero 改为"空间智能 & 自主设计",加序言两行 + 英文 mission * 使命段改为研究主线(感知→理解→推理闭环) * 研究方向三卡:自主设计 / 深邃之形 / 人本智能(含工具栈) - research.html 拆分 * 原 research.html(研究管理后台)重命名为 research-manage.html * 新建公开 research.html:研究定位 + 完整段落 + 概念对比表 + 研究维度表 - 基础设施调整 * 后端端口 5000 → 5001(避开本机 zotero-proxy 占用) * start_backend.sh 加可执行位 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
// API Client for DAEL Lab Backend
|
||||
|
||||
const API_BASE_URL = 'http://localhost:5000/api';
|
||||
const API_BASE_URL = 'http://localhost:5001/api';
|
||||
|
||||
// 辅助函数:发送请求
|
||||
async function apiRequest(endpoint, options = {}) {
|
||||
|
||||
+3
-3
@@ -1,4 +1,4 @@
|
||||
// Common JavaScript Functions for DAEL Lab Website
|
||||
// Common JavaScript Functions for TeaLab · 空间智能与自主设计
|
||||
|
||||
// Initialize Lucide Icons
|
||||
function initIcons() {
|
||||
@@ -130,9 +130,9 @@ function initVisitCounter() {
|
||||
const counterElement = document.getElementById('visit-counter');
|
||||
if (!counterElement) return;
|
||||
|
||||
let count = parseInt(localStorage.getItem('dael_visit_count') || '0');
|
||||
let count = parseInt(localStorage.getItem('tealab_visit_count') || '0');
|
||||
count++;
|
||||
localStorage.setItem('dael_visit_count', count.toString());
|
||||
localStorage.setItem('tealab_visit_count', count.toString());
|
||||
counterElement.textContent = count.toLocaleString();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user