Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
electricVehicle-backend
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张宗旭
electricVehicle-backend
Commits
d0fcebdc
Commit
d0fcebdc
authored
Jul 28, 2025
by
Zzx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交
parent
a007f580
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
1 deletion
+43
-1
index.js
src/menu/index.js
+2
-1
routes.js
src/router/routes.js
+12
-0
index.vue
src/views/purchaseOrder/add/index.vue
+18
-0
index.vue
src/views/purchaseOrder/list/index.vue
+11
-0
No files found.
src/menu/index.js
View file @
d0fcebdc
...
@@ -31,6 +31,7 @@ export const menuHeader = supplementPath([
...
@@ -31,6 +31,7 @@ export const menuHeader = supplementPath([
export
const
menuAside
=
supplementPath
([
export
const
menuAside
=
supplementPath
([
{
path
:
'/index'
,
title
:
'首页'
,
icon
:
'home'
},
{
path
:
'/index'
,
title
:
'首页'
,
icon
:
'home'
},
{
path
:
'/customerList'
,
title
:
'客户管理'
,
icon
:
''
},
{
path
:
'/customerList'
,
title
:
'客户管理'
,
icon
:
''
},
{
path
:
'/productList'
,
title
:
'产品管理'
,
icon
:
''
}
{
path
:
'/productList'
,
title
:
'产品管理'
,
icon
:
''
},
{
path
:
'/purchaseOrderList'
,
title
:
'采购单管理'
,
icon
:
''
}
])
])
src/router/routes.js
View file @
d0fcebdc
...
@@ -78,6 +78,18 @@ const frameIn = [
...
@@ -78,6 +78,18 @@ const frameIn = [
},
},
component
:
_import
(
'product/list/index'
)
component
:
_import
(
'product/list/index'
)
},
},
// 采购单
// 采购单 列表
{
path
:
'purchaseOrderList'
,
name
:
'purchaseOrderList'
,
meta
:
{
title
:
'采购单列表'
,
auth
:
true
},
component
:
_import
(
'purchaseOrder/list/index'
)
},
// 商家 列表
// 商家 列表
{
{
path
:
'businessList'
,
path
:
'businessList'
,
...
...
src/views/purchaseOrder/add/index.vue
0 → 100644
View file @
d0fcebdc
<
template
>
<div>
添加采购单
</div>
</
template
>
<
script
>
export
default
{
}
</
script
>
<
style
>
</
style
>
\ No newline at end of file
src/views/purchaseOrder/list/index.vue
0 → 100644
View file @
d0fcebdc
<
template
>
<div>
采购单列表
</div>
</
template
>
<
script
>
export
default
{};
</
script
>
<
style
>
</
style
>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment