feat: 供应商管理

This commit is contained in:
duan
2025-02-27 15:55:35 +08:00
parent 0eb09b0aab
commit af5ba4c954
22 changed files with 881 additions and 3 deletions

View File

@@ -522,6 +522,26 @@ export const constantRoutes: RouteRecordRaw[] = [
keepAlive: true,
},
},
{
path: "supplier",
component: () => import("@/views/inventory/supplier.vue"),
name: "supplier",
meta: {
title: "供应商管理",
affix: false,
hidden: true
},
}, {
path: "PaymentRecord",
component: () => import("@/views/inventory/PaymentRecord.vue"),
name: "PaymentRecord",
meta: {
title: "结款记录",
affix: false,
hidden: true
},
},
],
},
{
@@ -585,6 +605,28 @@ export const constantRoutes: RouteRecordRaw[] = [
},
],
},
{
path: "/mytemplate",
component: Layout,
meta: {
title: "我的模板",
icon: "tab",
alwaysShow: true,
hidden: true
},
children: [
{
path: "index",
component: () => import("@/views/mytemplate/index.vue"),
name: "orderIndex",
meta: {
title: "我的模板",
affix: false,
keepAlive: true,
},
},
],
},
];
/**