商城及购物车相关

This commit is contained in:
2025-08-26 11:36:01 +08:00
parent 1881823a1a
commit 14781f442a
4 changed files with 1272 additions and 72 deletions

View File

@@ -233,11 +233,23 @@ const routes = [
{
path: '/productsummary/:id',
name: 'productSummary',
component: () => import('@/views/productSummary.vue'),
component: () => import('@/views/ProductSummary.vue'),
meta: {
title: '商品汇总'
}
},
{
path: '/buydetail',
name: 'BuyDetail',
component: () => import('../views/BuyDetails.vue'),
meta: { title: '确认订单' }
},
{
path: '/pay',
name: 'Pay',
component: () => import('../views/Pay.vue'),
meta: { title: '确认支付' }
},
{
path: '/:pathMatch(.*)*',
name: 'NotFound',