feat: add customer service chat, optimize case and homepage, fix api proxy

这一提交完成了多项功能升级与优化:
1.  新增全局浮动客服组件,集成腾讯云TRTC聊天能力并添加错误格式化工具
2.  新增图片资源并调整部分静态文件结构
3.  优化案例页面:重构筛选逻辑、新增空状态处理、添加加载更多功能
4.  优化首页布局:修复统计数字动画、调整移动端适配样式、优化轮播逻辑
5.  重构官方内容获取工具:添加缓存机制、优化媒体资源处理
6.  优化API代理配置,移除默认本地代理并新增环境变量配置
7.  新增页面数据恢复刷新逻辑,优化页面交互体验
8.  修复按钮组件冗余代码,调整头部导航移动端样式
This commit is contained in:
2026-07-24 18:55:51 +08:00
parent 314cd6ccd7
commit 2ff1064de7
25 changed files with 4596 additions and 327 deletions
+7 -4
View File
@@ -241,6 +241,7 @@ watch(
@media (max-width: 820px) {
.subsite-header {
height: 58px;
overflow: visible;
}
.subsite-brand {
width: 158px;
@@ -253,7 +254,6 @@ watch(
position: relative;
width: 42px;
height: 42px;
display: block;
margin-left: auto;
display: grid;
place-items: center;
@@ -270,20 +270,23 @@ watch(
height: 20px;
}
.subsite-mobile-nav {
position: fixed;
position: absolute;
z-index: 29;
top: 58px;
top: 100%;
right: 0;
bottom: 0;
left: 0;
display: block;
height: calc(100dvh - 58px);
overflow-y: auto;
border-top: 1px solid rgba(48, 112, 192, 0.08);
background: rgba(247, 251, 255, 0.98);
box-shadow: 0 18px 34px rgba(61, 116, 185, 0.12);
backdrop-filter: blur(20px);
}
.subsite-mobile-nav .page-width {
display: grid;
padding-top: 20px;
padding-bottom: 28px;
}
.subsite-mobile-nav a,
.subsite-mobile-nav button {