完善采购订单数据计算逻辑

This commit is contained in:
2024-07-24 17:22:57 +08:00
parent 4e40bbfb3b
commit 443879af9f
8 changed files with 1679 additions and 183 deletions

View File

@@ -51,17 +51,15 @@ export const constantRoutes = [
meta: {
title: '客户管理'
},
children: [
{
path: '/customerInformation/customerInformation',
component: () => import('@/views/customerManagement/customerInformation/customerInformation'),
name: 'CustomerInformation',
meta: {
title: '客户信息管理',
noCache: true
}
children: [{
path: '/customerInformation/customerInformation',
component: () => import('@/views/customerManagement/customerInformation/customerInformation'),
name: 'CustomerInformation',
meta: {
title: '客户信息管理',
noCache: true
}
]
}]
},
{
path: '/salesOrder',
@@ -112,6 +110,15 @@ export const constantRoutes = [
title: '采购订单',
noCache: true
}
},
{
path: '/purchaseReview/index',
component: () => import('@/views/purchase/purchaseReview/index'),
name: 'PurchaseReview',
meta: {
title: '订单审核',
noCache: true
}
}
]
},