Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
najiu-admin-template
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
najiu-frontend
najiu-admin-template
Commits
2fbc4504
Commit
2fbc4504
authored
Oct 19, 2020
by
vben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update readme.md
parent
a207cafe
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
86 additions
and
68 deletions
+86
-68
README.md
README.md
+1
-1
charts.ts
src/router/menus/modules/demo/charts.ts
+0
-22
excel.ts
src/router/menus/modules/demo/excel.ts
+29
-0
charts.ts
src/router/routes/modules/demo/charts.ts
+0
-42
excel.ts
src/router/routes/modules/demo/excel.ts
+53
-0
iframe.ts
src/router/routes/modules/demo/iframe.ts
+2
-2
siteSetting.ts
src/settings/siteSetting.ts
+1
-1
No files found.
README.md
View file @
2fbc4504
...
@@ -61,7 +61,7 @@
...
@@ -61,7 +61,7 @@
## 文档
## 文档
2.
0 文档很快完成,请耐心等待。
[
文档地址,持续更新中。。,
](
https://vvbin.cn/doc-next/
)
## 预安装
## 预安装
...
...
src/router/menus/modules/demo/charts.ts
View file @
2fbc4504
...
@@ -27,28 +27,6 @@ const menu: MenuModule = {
...
@@ -27,28 +27,6 @@ const menu: MenuModule = {
},
},
],
],
},
},
// {
// path: '/excel',
// name: 'excel',
// children: [
{
path
:
'
/customExport
'
,
name
:
'
选择导出格式
'
,
},
{
path
:
'
/jsonExport
'
,
name
:
'
JSON数据导出
'
,
},
{
path
:
'
/arrayExport
'
,
name
:
'
Array数据导出
'
,
},
{
path
:
'
/importExcel
'
,
name
:
'
导入
'
,
},
// ],
// },
],
],
},
},
};
};
...
...
src/router/menus/modules/demo/excel.ts
0 → 100644
View file @
2fbc4504
import
type
{
MenuModule
}
from
'
/@/router/types.d
'
;
const
menu
:
MenuModule
=
{
orderNo
:
500
,
menu
:
{
name
:
'
Excel
'
,
path
:
'
/excel
'
,
children
:
[
{
path
:
'
/customExport
'
,
name
:
'
选择导出格式
'
,
},
{
path
:
'
/jsonExport
'
,
name
:
'
JSON数据导出
'
,
},
{
path
:
'
/arrayExport
'
,
name
:
'
Array数据导出
'
,
},
{
path
:
'
/importExcel
'
,
name
:
'
导入
'
,
},
// ],
// },
],
},
};
export
default
menu
;
src/router/routes/modules/demo/charts.ts
View file @
2fbc4504
...
@@ -56,47 +56,5 @@ export default {
...
@@ -56,47 +56,5 @@ export default {
},
},
component
:
()
=>
import
(
'
/@/views/demo/echarts/apex/index.vue
'
),
component
:
()
=>
import
(
'
/@/views/demo/echarts/apex/index.vue
'
),
},
},
// {
// path: '/excel',
// name: 'ExcelDemo',
// redirect: '/charts/excel/export',
// meta: {
// title: 'excel',
// },
// children: [
{
path
:
'
/customExport
'
,
name
:
'
CustomExport
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/CustomExport.vue
'
),
meta
:
{
title
:
'
选择导出格式
'
,
},
},
{
path
:
'
/jsonExport
'
,
name
:
'
JsonExport
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/JsonExport.vue
'
),
meta
:
{
title
:
'
JSON数据导出
'
,
},
},
{
path
:
'
/arrayExport
'
,
name
:
'
ArrayExport
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/ArrayExport.vue
'
),
meta
:
{
title
:
'
Array数据导出
'
,
},
},
{
path
:
'
/importExcel
'
,
name
:
'
ImportExcel
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/ImportExcel.vue
'
),
meta
:
{
title
:
'
导入
'
,
},
},
// ],
// },
],
],
}
as
AppRouteModule
;
}
as
AppRouteModule
;
src/router/routes/modules/demo/excel.ts
0 → 100644
View file @
2fbc4504
import
type
{
AppRouteModule
}
from
'
/@/router/types
'
;
import
{
PAGE_LAYOUT_COMPONENT
}
from
'
/@/router/constant
'
;
export
default
{
layout
:
{
path
:
'
/excel
'
,
name
:
'
Excel
'
,
component
:
PAGE_LAYOUT_COMPONENT
,
redirect
:
'
/excel/customExport
'
,
meta
:
{
icon
:
'
ant-design:area-chart-outlined
'
,
title
:
'
Excel
'
,
},
},
routes
:
[
{
path
:
'
/customExport
'
,
name
:
'
CustomExport
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/CustomExport.vue
'
),
meta
:
{
title
:
'
选择导出格式
'
,
},
},
{
path
:
'
/jsonExport
'
,
name
:
'
JsonExport
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/JsonExport.vue
'
),
meta
:
{
title
:
'
JSON数据导出
'
,
},
},
{
path
:
'
/arrayExport
'
,
name
:
'
ArrayExport
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/ArrayExport.vue
'
),
meta
:
{
title
:
'
Array数据导出
'
,
},
},
{
path
:
'
/importExcel
'
,
name
:
'
ImportExcel
'
,
component
:
()
=>
import
(
'
/@/views/demo/echarts/excel/ImportExcel.vue
'
),
meta
:
{
title
:
'
导入
'
,
},
},
// ],
// },
],
}
as
AppRouteModule
;
src/router/routes/modules/demo/iframe.ts
View file @
2fbc4504
...
@@ -31,7 +31,7 @@ export default {
...
@@ -31,7 +31,7 @@ export default {
name
:
'
Doc
'
,
name
:
'
Doc
'
,
component
:
IFrame
,
component
:
IFrame
,
meta
:
{
meta
:
{
frameSrc
:
'
https://vvbin.cn/doc
s
/
'
,
frameSrc
:
'
https://vvbin.cn/doc
-next
/
'
,
title
:
'
项目文档(内嵌)
'
,
title
:
'
项目文档(内嵌)
'
,
afterCloseLoading
:
true
,
afterCloseLoading
:
true
,
},
},
...
@@ -41,7 +41,7 @@ export default {
...
@@ -41,7 +41,7 @@ export default {
name
:
'
DocExternal
'
,
name
:
'
DocExternal
'
,
component
:
IFrame
,
component
:
IFrame
,
meta
:
{
meta
:
{
externalLink
:
'
https://vvbin.cn/doc
s
/
'
,
externalLink
:
'
https://vvbin.cn/doc
-next
/
'
,
title
:
'
项目文档(外链)
'
,
title
:
'
项目文档(外链)
'
,
},
},
},
},
...
...
src/settings/siteSetting.ts
View file @
2fbc4504
// github repo url
// github repo url
export
const
GITHUB_URL
=
'
https://github.com/anncwb/vue-vben-admin
'
;
export
const
GITHUB_URL
=
'
https://github.com/anncwb/vue-vben-admin
'
;
// vue-vben-admin-next-doc
// vue-vben-admin-next-doc
export
const
DOC_URL
=
''
;
export
const
DOC_URL
=
'
https://vvbin.cn/doc-next/
'
;
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