fix(ui): 修正页面标题文字

- 将'立即订水'修改为'立即送水'
- 更新首页导航标题
- 更新商品详情页跳转标题
This commit is contained in:
2026-02-05 17:37:40 +08:00
parent 24354a38c5
commit 8c7698a198
2 changed files with 2 additions and 2 deletions

View File

@@ -205,7 +205,7 @@ function Home() {
},
{
key: 'order',
title: '立即水',
title: '立即水',
icon: <Cart size={30} />,
onClick: () => Taro.navigateTo({ url: '/shop/goodsDetail/index?id=10074' }),
},

View File

@@ -1,4 +1,4 @@
export default definePageConfig({
navigationBarTitleText: '立即水',
navigationBarTitleText: '立即水',
navigationBarTextStyle: 'black'
})