rename(app): 将应用名称从"干杯日记"更改为"碰盏日记"

- 替换所有文件中的品牌名称引用,包括App.vue、pages.json、uni.scss等
- 更新全局样式、导航栏标题和组件中的文案显示
- 修改分享功能中的应用名称显示
- 调整聊天页面的输入栏键盘适配逻辑
- 在多个页面组件中添加事件发射声明以支持交互功能
This commit is contained in:
cg
2026-07-21 22:20:08 +08:00
parent c4d30b8990
commit 99723497fa
25 changed files with 81 additions and 44 deletions
+1 -1
View File
@@ -89,7 +89,7 @@
<!-- 品牌底栏 -->
<view class="card-brand">
<view class="brand-left">
<text class="brand-name">干杯日记</text>
<text class="brand-name">碰盏日记</text>
<text class="brand-slogan">记录每一杯的故事</text>
</view>
<view class="brand-qr"></view>
+1
View File
@@ -46,6 +46,7 @@ export default {
props: {
event: { type: Object, default: () => ({}) }
},
emits: ['tap'],
computed: {
statusLabel() {
const map = { open: '报名中', ongoing: '进行中', ended: '已结束' }
+1
View File
@@ -68,6 +68,7 @@ export default {
props: {
feed: { type: Object, default: () => ({}) }
},
emits: ['tap', 'like', 'comment', 'share'],
methods: {
getCatIcon,
isIconPath,
+2 -1
View File
@@ -20,7 +20,8 @@ export default {
name: 'FriendItem',
props: {
friend: { type: Object, default: () => ({}) }
}
},
emits: ['tap']
}
</script>