feat: 本次提交更新内容如下

功能、和样式修复
This commit is contained in:
2025-07-22 14:37:57 +08:00
parent 34df010769
commit f33bdf42e2
14 changed files with 205 additions and 74 deletions

View File

@@ -3,6 +3,7 @@ import Plans from "@/pages/plans/Plans";
import PlanDetail from "@/pages/plans/PlanDetail";
import Orders from "@/pages/orders/Orders";
import ContactImport from "@/pages/contact-import/ContactImport";
import SelectionTest from "@/components/SelectionTest";
const otherRoutes = [
{
@@ -35,6 +36,11 @@ const otherRoutes = [
element: <ContactImport />,
auth: true,
},
{
path: "/selection-test",
element: <SelectionTest />,
auth: false,
},
];
export default otherRoutes;