feat: add payment gateway and billing plans

This commit is contained in:
Entropy.Xu
2026-05-13 01:18:38 +08:00
parent 0fa97595bf
commit 10285c5eb9
97 changed files with 14797 additions and 404 deletions

View File

@@ -127,6 +127,11 @@ const routes: RouteRecordRaw[] = [
name: 'WalletCenter',
component: () => importWithRetry(() => import('@/views/user/WalletCenter.vue'))
},
{
path: 'billing',
name: 'BillingPlans',
component: () => importWithRetry(() => import('@/views/user/BillingPlans.vue'))
},
{
path: 'models',
name: 'ModelCatalog',
@@ -164,6 +169,16 @@ const routes: RouteRecordRaw[] = [
name: 'WalletsManagement',
component: () => importWithRetry(() => import('@/views/admin/WalletsManagement.vue'))
},
{
path: 'payment-gateways',
name: 'PaymentGatewaySettings',
component: () => importWithRetry(() => import('@/views/admin/PaymentGatewaySettings.vue'))
},
{
path: 'billing-plans',
name: 'BillingPlansManagement',
component: () => importWithRetry(() => import('@/views/admin/BillingPlansManagement.vue'))
},
{
path: 'management-tokens',
name: 'AdminManagementTokens',