feat: 重命名交易对管理为代币化交易对管理,并新增交易对的添加和编辑功能
This commit is contained in:
@@ -245,7 +245,7 @@ const local: App.I18n.Schema = {
|
|||||||
transfer: 'Transfer',
|
transfer: 'Transfer',
|
||||||
withdraw_approved: 'Approved Withdraw',
|
withdraw_approved: 'Approved Withdraw',
|
||||||
asset: 'Asset Management',
|
asset: 'Asset Management',
|
||||||
tradingpairs: 'Trading Pairs Management',
|
'tokenization_trading-pairs': 'Trading Pairs Management',
|
||||||
tokenization: 'Tokenization Management',
|
tokenization: 'Tokenization Management',
|
||||||
tokenization_product: 'Tokenization Product'
|
tokenization_product: 'Tokenization Product'
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ const local: App.I18n.Schema = {
|
|||||||
user_transfer: '用户转账记录',
|
user_transfer: '用户转账记录',
|
||||||
transfer: '转账管理',
|
transfer: '转账管理',
|
||||||
asset: '资产管理',
|
asset: '资产管理',
|
||||||
tradingpairs: '交易对管理',
|
'tokenization_trading-pairs': '交易对管理',
|
||||||
tokenization: '代币化管理',
|
tokenization: '代币化管理',
|
||||||
tokenization_product: '代币化产品'
|
tokenization_product: '代币化产品'
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<Ro
|
|||||||
rwa_producttype: () => import("@/views/rwa/productType/index.vue"),
|
rwa_producttype: () => import("@/views/rwa/productType/index.vue"),
|
||||||
rwa_subscribe: () => import("@/views/rwa/subscribe/index.vue"),
|
rwa_subscribe: () => import("@/views/rwa/subscribe/index.vue"),
|
||||||
tokenization_product: () => import("@/views/tokenization/product/index.vue"),
|
tokenization_product: () => import("@/views/tokenization/product/index.vue"),
|
||||||
tradingpairs: () => import("@/views/tradingPairs/index.vue"),
|
"tokenization_trading-pairs": () => import("@/views/tokenization/trading-pairs/index.vue"),
|
||||||
transfer: () => import("@/views/transfer/index.vue"),
|
transfer: () => import("@/views/transfer/index.vue"),
|
||||||
user_bankcard: () => import("@/views/user/bankcard/index.vue"),
|
user_bankcard: () => import("@/views/user/bankcard/index.vue"),
|
||||||
user_list: () => import("@/views/user/list/index.vue"),
|
user_list: () => import("@/views/user/list/index.vue"),
|
||||||
|
|||||||
@@ -173,18 +173,17 @@ export const generatedRoutes: GeneratedRoute[] = [
|
|||||||
title: '代币化产品',
|
title: '代币化产品',
|
||||||
i18nKey: 'route.tokenization_product'
|
i18nKey: 'route.tokenization_product'
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'tradingpairs',
|
name: 'tokenization_trading-pairs',
|
||||||
path: '/tradingpairs',
|
path: '/tokenization/trading-pairs',
|
||||||
component: 'layout.base$view.tradingpairs',
|
component: 'view.tokenization_trading-pairs',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'tradingpairs',
|
title: 'tokenization_trading-pairs',
|
||||||
i18nKey: 'route.tradingpairs',
|
i18nKey: 'route.tokenization_trading-pairs'
|
||||||
order: 7
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'transfer',
|
name: 'transfer',
|
||||||
|
|||||||
@@ -179,7 +179,7 @@ const routeMap: RouteMap = {
|
|||||||
"rwa_subscribe": "/rwa/subscribe",
|
"rwa_subscribe": "/rwa/subscribe",
|
||||||
"tokenization": "/tokenization",
|
"tokenization": "/tokenization",
|
||||||
"tokenization_product": "/tokenization/product",
|
"tokenization_product": "/tokenization/product",
|
||||||
"tradingpairs": "/tradingpairs",
|
"tokenization_trading-pairs": "/tokenization/trading-pairs",
|
||||||
"transfer": "/transfer",
|
"transfer": "/transfer",
|
||||||
"user": "/user",
|
"user": "/user",
|
||||||
"user_bankcard": "/user/bankcard",
|
"user_bankcard": "/user/bankcard",
|
||||||
|
|||||||
5
src/typings/elegant-router.d.ts
vendored
5
src/typings/elegant-router.d.ts
vendored
@@ -33,7 +33,7 @@ declare module "@elegant-router/types" {
|
|||||||
"rwa_subscribe": "/rwa/subscribe";
|
"rwa_subscribe": "/rwa/subscribe";
|
||||||
"tokenization": "/tokenization";
|
"tokenization": "/tokenization";
|
||||||
"tokenization_product": "/tokenization/product";
|
"tokenization_product": "/tokenization/product";
|
||||||
"tradingpairs": "/tradingpairs";
|
"tokenization_trading-pairs": "/tokenization/trading-pairs";
|
||||||
"transfer": "/transfer";
|
"transfer": "/transfer";
|
||||||
"user": "/user";
|
"user": "/user";
|
||||||
"user_bankcard": "/user/bankcard";
|
"user_bankcard": "/user/bankcard";
|
||||||
@@ -84,7 +84,6 @@ declare module "@elegant-router/types" {
|
|||||||
| "login"
|
| "login"
|
||||||
| "rwa"
|
| "rwa"
|
||||||
| "tokenization"
|
| "tokenization"
|
||||||
| "tradingpairs"
|
|
||||||
| "transfer"
|
| "transfer"
|
||||||
| "user"
|
| "user"
|
||||||
| "withdraw"
|
| "withdraw"
|
||||||
@@ -117,7 +116,7 @@ declare module "@elegant-router/types" {
|
|||||||
| "rwa_producttype"
|
| "rwa_producttype"
|
||||||
| "rwa_subscribe"
|
| "rwa_subscribe"
|
||||||
| "tokenization_product"
|
| "tokenization_product"
|
||||||
| "tradingpairs"
|
| "tokenization_trading-pairs"
|
||||||
| "transfer"
|
| "transfer"
|
||||||
| "user_bankcard"
|
| "user_bankcard"
|
||||||
| "user_list"
|
| "user_list"
|
||||||
|
|||||||
Reference in New Issue
Block a user