需求更改开发中

This commit is contained in:
2025-10-20 10:15:13 +08:00
parent d1b3357a8e
commit a60603acd0
30 changed files with 2863 additions and 704 deletions

View File

@@ -62,7 +62,7 @@ export const accountRoutes = [
path: '/account',
name: 'account',
component: () => import('../views/account/index.vue'),
redirect: '/account/wallet',
redirect: '/account/shops',
meta: {
title: '个人中心',
description: '管理个人资料和店铺',
@@ -99,6 +99,16 @@ export const accountRoutes = [
allAuthority: ['all']
}
},
{
path: 'receipt-record',
name: 'accountReceiptRecord',
component: () => import('../views/account/receiptRecord.vue'),
meta: {
title: '收款记录',
description: '卖家收款流水记录',
allAuthority: ['all']
}
},
{
path: 'shop-new',
name: 'accountShopNew',
@@ -159,6 +169,16 @@ export const accountRoutes = [
allAuthority: ['all']
}
},
{
path: 'funds-flow',
name: 'accountFundsFlow',
component: () => import('../views/account/fundsFlow.vue'),
meta: {
title: '资金流水',
description: '充值/提现/消费记录切换查看',
allAuthority: ['all']
}
},
{
path: 'purchased-detail/:orderItemId',
name: 'PurchasedDetail',