diff --git a/src/locales/langs/zh-cn.ts b/src/locales/langs/zh-cn.ts index 1054972..6b19b58 100644 --- a/src/locales/langs/zh-cn.ts +++ b/src/locales/langs/zh-cn.ts @@ -229,6 +229,7 @@ const local: App.I18n.Schema = { deposit_fiat: '法币充值', withdraw: '提现管理', withdraw_fiat: '法币提现', + withdraw_approved: '已批准提现列表', rwa: 'RWA管理', rwa_product: 'RWA产品', rwa_producttype: '产品类型', diff --git a/src/router/elegant/imports.ts b/src/router/elegant/imports.ts index 8624789..e61dbfd 100644 --- a/src/router/elegant/imports.ts +++ b/src/router/elegant/imports.ts @@ -28,5 +28,6 @@ export const views: Record Promise import("@/views/user/bankcard/index.vue"), user_list: () => import("@/views/user/list/index.vue"), user_transfer: () => import("@/views/user/transfer/index.vue"), + withdraw_approved: () => import("@/views/withdraw/approved/index.vue"), withdraw_fiat: () => import("@/views/withdraw/fiat/index.vue"), }; diff --git a/src/router/elegant/routes.ts b/src/router/elegant/routes.ts index c6888c4..a477040 100644 --- a/src/router/elegant/routes.ts +++ b/src/router/elegant/routes.ts @@ -184,6 +184,15 @@ export const generatedRoutes: GeneratedRoute[] = [ order: 3 }, children: [ + { + name: 'withdraw_approved', + path: '/withdraw/approved', + component: 'view.withdraw_approved', + meta: { + title: 'withdraw_approved', + i18nKey: 'route.withdraw_approved' + } + }, { name: 'withdraw_fiat', path: '/withdraw/fiat', diff --git a/src/router/elegant/transform.ts b/src/router/elegant/transform.ts index 665c0f5..cfd9e4d 100644 --- a/src/router/elegant/transform.ts +++ b/src/router/elegant/transform.ts @@ -180,6 +180,7 @@ const routeMap: RouteMap = { "user_list": "/user/list", "user_transfer": "/user/transfer", "withdraw": "/withdraw", + "withdraw_approved": "/withdraw/approved", "withdraw_fiat": "/withdraw/fiat" }; diff --git a/src/typings/elegant-router.d.ts b/src/typings/elegant-router.d.ts index 487e3fd..0de0bef 100644 --- a/src/typings/elegant-router.d.ts +++ b/src/typings/elegant-router.d.ts @@ -34,6 +34,7 @@ declare module "@elegant-router/types" { "user_list": "/user/list"; "user_transfer": "/user/transfer"; "withdraw": "/withdraw"; + "withdraw_approved": "/withdraw/approved"; "withdraw_fiat": "/withdraw/fiat"; }; @@ -105,6 +106,7 @@ declare module "@elegant-router/types" { | "user_bankcard" | "user_list" | "user_transfer" + | "withdraw_approved" | "withdraw_fiat" >; diff --git a/src/views/rwa/product/index.vue b/src/views/rwa/product/index.vue index 72dbb28..cfd69b4 100644 --- a/src/views/rwa/product/index.vue +++ b/src/views/rwa/product/index.vue @@ -25,7 +25,7 @@ const columns: TableBaseColumns = [ key: 'id' }, { - title: 'Code', + title: '产品代码', key: 'code' }, { @@ -33,7 +33,7 @@ const columns: TableBaseColumns = [ key: 'name' }, { - title: '估值', + title: '产品估值', key: 'estimatedValue' }, { @@ -41,7 +41,7 @@ const columns: TableBaseColumns = [ key: 'categoryId' }, { - title: '创建人', + title: '创建人ID', key: 'createdBy' }, { diff --git a/src/views/rwa/producttype/index.vue b/src/views/rwa/producttype/index.vue index 982d590..15a6343 100644 --- a/src/views/rwa/producttype/index.vue +++ b/src/views/rwa/producttype/index.vue @@ -1,18 +1,20 @@ diff --git a/src/views/user/bank/index.vue b/src/views/user/bank/index.vue index 7a1e0af..85d5bd2 100644 --- a/src/views/user/bank/index.vue +++ b/src/views/user/bank/index.vue @@ -1,19 +1,21 @@ diff --git a/src/views/user/bankcard/index.vue b/src/views/user/bankcard/index.vue index 499675e..1f47b37 100644 --- a/src/views/user/bankcard/index.vue +++ b/src/views/user/bankcard/index.vue @@ -1,18 +1,20 @@ diff --git a/src/views/user/transfer/index.vue b/src/views/user/transfer/index.vue index f4d2e78..479ff39 100644 --- a/src/views/user/transfer/index.vue +++ b/src/views/user/transfer/index.vue @@ -1,56 +1,108 @@ diff --git a/src/views/withdraw/approved/index.vue b/src/views/withdraw/approved/index.vue new file mode 100644 index 0000000..aa45cbe --- /dev/null +++ b/src/views/withdraw/approved/index.vue @@ -0,0 +1,133 @@ + + + + + diff --git a/src/views/withdraw/fiat/index.vue b/src/views/withdraw/fiat/index.vue index f6b3ef5..2037a36 100644 --- a/src/views/withdraw/fiat/index.vue +++ b/src/views/withdraw/fiat/index.vue @@ -1,13 +1,24 @@