完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
/**
|
|
* 路由相关工具函数
|
|
*/
|
|
|
|
// 检查是否为 iframe 路由
|
|
export function isIframe(url: string): boolean {
|
|
return url.startsWith('/iframe/')
|
|
}
|