feat(router): 添加携程账户和订单路由

- 在 iframe 模块中添加了 CTripAccount 和 CTripOrder 两个新路由
- 分别用于显示携程账户信息和订单信息页面
- 新增路由无需认证,对所有用户开放
This commit is contained in:
danial
2025-03-08 12:17:45 +08:00
parent ac4abb7699
commit f972d13425

View File

@@ -185,6 +185,26 @@ const IFRAME: AppRouteRecordRaw = {
requiresAuth: false,
roles: ['*']
}
},
{
path: 'CTripAccount',
name: 'iframeCTripAccount',
component: () => import('@/views/card-c-trip-info/account/index.vue'),
meta: {
locale: '携程账户',
requiresAuth: false,
roles: ['*']
}
},
{
path: 'CTripOrder',
name: 'iframeCTripOrder',
component: () => import('@/views/card-c-trip-info/order/index.vue'),
meta: {
locale: '携程订单',
requiresAuth: false,
roles: ['*']
}
}
]
};