Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
fa3ae6a0
authored
2020-10-15 18:49:17 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
新增添加页面和路由
1 parent
81a069fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
src/router/routes.js
src/views/Home.vue
src/router/routes.js
View file @
fa3ae6a
...
...
@@ -36,6 +36,12 @@ const constantRoutes = [
component
:
()
=>
import
(
"@/views/panel/create/index"
),
},
{
path
:
"/add"
,
name
:
"添加"
,
code
:
"0-6"
,
component
:
()
=>
import
(
"@/views/panel/add/index"
),
},
{
path
:
"/modify"
,
name
:
"更正"
,
code
:
"0-3"
,
...
...
src/views/Home.vue
View file @
fa3ae6a
...
...
@@ -76,6 +76,10 @@ export default {
select
:
false
,
},
{
path
:
"/add"
,
select
:
false
,
},
{
path
:
"/modify"
,
select
:
false
,
},
...
...
@@ -215,6 +219,11 @@ export default {
icon
:
"fa fa-address-card-o"
,
path
:
"/create"
,
},
{
name
:
"添加"
,
icon
:
"fa fa-address-card-o"
,
path
:
"/add"
,
},
{
name
:
"更正"
,
icon
:
"fa fa-address-card-o"
,
path
:
"/modify"
},
{
name
:
"变更"
,
...
...
Please
register
or
sign in
to post a comment