Pārlūkot izejas kodu

✨ feat(profile): 添加我的订单菜单选项

- 在个人资料页面添加"我的订单"菜单选项
- 点击可跳转到订单列表页面
- 使用橙色购物袋图标增强视觉识别度
yourname 3 mēneši atpakaļ
vecāks
revīzija
816cd6db5c
1 mainītis faili ar 6 papildinājumiem un 0 dzēšanām
  1. 6 0
      mini/src/pages/profile/index.tsx

+ 6 - 0
mini/src/pages/profile/index.tsx

@@ -102,6 +102,12 @@ const ProfilePage: React.FC = () => {
   }
 
   const menuItems = [
+    {
+      icon: 'i-heroicons-shopping-bag-20-solid',
+      title: '我的订单',
+      onClick: () => Taro.navigateTo({ url: '/pages/order-list/index' }),
+      color: 'text-orange-500'
+    },
     {
       icon: 'i-heroicons-user-circle-20-solid',
       title: '编辑资料',