From 99723497fa50dd92d8a07e6d130fc2ab6f031a9f Mon Sep 17 00:00:00 2001 From: cheng <545895878@qq.com> Date: Tue, 21 Jul 2026 22:20:08 +0800 Subject: [PATCH] =?UTF-8?q?rename(app):=20=E5=B0=86=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E4=BB=8E"=E5=B9=B2=E6=9D=AF=E6=97=A5?= =?UTF-8?q?=E8=AE=B0"=E6=9B=B4=E6=94=B9=E4=B8=BA"=E7=A2=B0=E7=9B=8F?= =?UTF-8?q?=E6=97=A5=E8=AE=B0"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 替换所有文件中的品牌名称引用,包括App.vue、pages.json、uni.scss等 - 更新全局样式、导航栏标题和组件中的文案显示 - 修改分享功能中的应用名称显示 - 调整聊天页面的输入栏键盘适配逻辑 - 在多个页面组件中添加事件发射声明以支持交互功能 --- App.vue | 4 ++-- common/api.js | 2 +- common/constants.js | 2 +- common/mock-data.js | 2 +- common/theme-mixin.js | 2 +- common/utils.js | 2 +- common/websocket.js | 2 +- components/DrinkCard.vue | 2 +- components/EventCard.vue | 1 + components/FeedCard.vue | 1 + components/FriendItem.vue | 3 ++- docs/API接口文档.md | 4 ++-- docs/私信模块接口文档.md | 4 ++-- docs/酒友圈接口文档.md | 6 ++--- pages.json | 12 +++++++--- pages/card/card.vue | 8 +++---- pages/chat/chat.vue | 32 +++++++++++++++++++++++++-- pages/friends/friends.vue | 2 +- pages/index/index.vue | 4 ++-- pages/login/login.vue | 6 ++--- pages/onboarding/onboarding.vue | 4 ++-- pages/profile/profile.vue | 6 ++--- pages/record/record.vue | 4 ++-- pages/share-profile/share-profile.vue | 8 +++---- uni.scss | 2 +- 25 files changed, 81 insertions(+), 44 deletions(-) diff --git a/App.vue b/App.vue index 726d2ea..f4eedfd 100644 --- a/App.vue +++ b/App.vue @@ -5,7 +5,7 @@ import wsManager from './common/websocket' export default { onLaunch() { - console.log('干杯日记 App Launch') + console.log('碰盏日记 App Launch') // 初始化主题 this.initTheme() // 尝试刷新 token @@ -84,7 +84,7 @@ export default {