Commit d0fcebdc authored by Zzx's avatar Zzx

提交

parent a007f580
......@@ -31,6 +31,7 @@ export const menuHeader = supplementPath([
export const menuAside = supplementPath([
{ path: '/index', title: '首页', icon: 'home' },
{ path: '/customerList', title: '客户管理', icon: '' },
{ path: '/productList', title: '产品管理', icon: '' }
{ path: '/productList', title: '产品管理', icon: '' },
{ path: '/purchaseOrderList', title: '采购单管理', icon: '' }
])
......@@ -78,6 +78,18 @@ const frameIn = [
},
component: _import('product/list/index')
},
// 采购单
// 采购单 列表
{
path: 'purchaseOrderList',
name: 'purchaseOrderList',
meta: {
title: '采购单列表',
auth: true
},
component: _import('purchaseOrder/list/index')
},
// 商家 列表
{
path: 'businessList',
......
<template>
<div>
添加采购单
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>
\ No newline at end of file
<template>
<div>采购单列表</div>
</template>
<script>
export default {};
</script>
<style>
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment