供应商管理

This commit is contained in:
adstat 2024-06-19 15:31:14 +08:00
parent 0a01cd95bd
commit 2484090058
2 changed files with 12 additions and 0 deletions

View File

@ -110,6 +110,11 @@ const list = [
name: "销售数据",
component: () => import("../views/dataCenter/salesReport.vue"),
},
{
path: "supplierList",
name: "供应商列表",
component: () => import("../views/supplier/supplierList.vue"),
},
],
},
];

View File

@ -0,0 +1,7 @@
<template>
<div>
<el-row type="flex" justify="end">
<el-col :offset="24"><el-button type="success">新增</el-button></el-col>
</el-row>
</div>
</template>