Преглед изворни кода

✨ feat(profile): 添加收货地址菜单跳转功能

- 在个人中心页的收货地址菜单中添加页面跳转
- 点击收货地址菜单跳转到收货地址管理页面
- 使用 Taro.navigateTo 实现页面路由跳转

🤖 Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
yourname пре 2 месеци
родитељ
комит
247021a751
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      mini/src/pages/profile/index.tsx

+ 1 - 1
mini/src/pages/profile/index.tsx

@@ -153,7 +153,7 @@ const ProfilePage: React.FC = () => {
   const handleCellClick = (type: string) => {
     switch (type) {
       case 'address':
-        Taro.showToast({ title: '收货地址功能开发中...', icon: 'none' })
+        Taro.navigateTo({ url: '/pages/address-manage/index' })
         break
       case 'service':
         handleCustomerService()