|
@@ -6,7 +6,8 @@ import {
|
6
|
6
|
IdcardOutlined,
|
7
|
7
|
SettingOutlined,
|
8
|
8
|
ShopOutlined,
|
9
|
|
- BankOutlined
|
|
9
|
+ BankOutlined,
|
|
10
|
+ MinusOutlined
|
10
|
11
|
} from "@ant-design/icons";
|
11
|
12
|
import { Outlet, Navigate } from "react-router-dom";
|
12
|
13
|
import AuthLayout from "@/layouts/AuthLayout";
|
|
@@ -80,7 +81,7 @@ export const authRoutes = [
|
80
|
81
|
element: <AccountManagement />,
|
81
|
82
|
meta: {
|
82
|
83
|
title: "账户管理",
|
83
|
|
- icon: <SolutionOutlined />,
|
|
84
|
+ icon: <MinusOutlined />,
|
84
|
85
|
},
|
85
|
86
|
},
|
86
|
87
|
{
|
|
@@ -88,7 +89,7 @@ export const authRoutes = [
|
88
|
89
|
element: <PayMent />,
|
89
|
90
|
meta: {
|
90
|
91
|
title: "付款",
|
91
|
|
- icon: <SolutionOutlined />,
|
|
92
|
+ icon: <MinusOutlined />,
|
92
|
93
|
},
|
93
|
94
|
},
|
94
|
95
|
{
|
|
@@ -96,7 +97,7 @@ export const authRoutes = [
|
96
|
97
|
element: <RecipientManagement />,
|
97
|
98
|
meta: {
|
98
|
99
|
title: "收款方管理",
|
99
|
|
- icon: <SolutionOutlined />,
|
|
100
|
+ icon: <MinusOutlined />,
|
100
|
101
|
},
|
101
|
102
|
},
|
102
|
103
|
{
|
|
@@ -104,7 +105,7 @@ export const authRoutes = [
|
104
|
105
|
element: <StoreForeignExchange />,
|
105
|
106
|
meta: {
|
106
|
107
|
title: "店铺和结汇额度管理",
|
107
|
|
- icon: <SolutionOutlined />,
|
|
108
|
+ icon: <MinusOutlined />,
|
108
|
109
|
},
|
109
|
110
|
},
|
110
|
111
|
],
|