plotpage
This commit is contained in:
parent
98096c81dd
commit
3513a2ab4f
|
@ -2,3 +2,4 @@ build/*.js
|
||||||
src/assets
|
src/assets
|
||||||
public
|
public
|
||||||
dist
|
dist
|
||||||
|
src
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
"chalk": "2.4.2",
|
"chalk": "2.4.2",
|
||||||
"chokidar": "2.1.5",
|
"chokidar": "2.1.5",
|
||||||
"connect": "3.6.6",
|
"connect": "3.6.6",
|
||||||
"eslint-plugin-vue": "5.2.2",
|
"eslint-plugin-vue": "^5.2.3",
|
||||||
"html-webpack-plugin": "3.2.0",
|
"html-webpack-plugin": "3.2.0",
|
||||||
"lint-staged": "8.1.5",
|
"lint-staged": "8.1.5",
|
||||||
"mockjs": "1.0.1-beta3",
|
"mockjs": "1.0.1-beta3",
|
||||||
|
|
|
@ -12,7 +12,7 @@ import chartsRouter from './modules/charts'
|
||||||
import tableRouter from './modules/table'
|
import tableRouter from './modules/table'
|
||||||
import nestedRouter from './modules/nested'
|
import nestedRouter from './modules/nested'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Note: sub-menu only appear when route children.length >= 1
|
* Note: sub-menu only appear when route children.length >= 1
|
||||||
* Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html
|
* Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html
|
||||||
*
|
*
|
||||||
|
@ -108,6 +108,20 @@ export const constantRoutes = [
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/plot',
|
||||||
|
//hidden: true,
|
||||||
|
component: Layout,
|
||||||
|
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'plot',
|
||||||
|
component: () => import('@/views/plot/index'),
|
||||||
|
name: 'plot',
|
||||||
|
meta: { title: 'plot' }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/documentation',
|
path: '/documentation',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<script>
|
<script>
|
||||||
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
|
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
|
||||||
export default {
|
export default {
|
||||||
name: 'Analyze',
|
name: 'Analyze',
|
||||||
components: {
|
components: {
|
||||||
Circle9
|
Circle9
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
<template>
|
||||||
|
<!-- <div class="vue-spinner">
|
||||||
|
<Circle9 />
|
||||||
|
<h1>Analyzing....</h1>
|
||||||
|
</div> -->
|
||||||
|
<iframe src="http://localhost:808" width=1300 height=600></iframe>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
|
||||||
|
export default {
|
||||||
|
name: 'plot',
|
||||||
|
components: {
|
||||||
|
Circle9
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.vue-spinner{
|
||||||
|
margin: 100px;
|
||||||
|
width: 50%;
|
||||||
|
height: 50%;
|
||||||
|
/*overflow: hidden;*/
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue