@ -0,0 +1,23 @@
|
|||||||
|
.DS_Store
|
||||||
|
node_modules
|
||||||
|
/dist
|
||||||
|
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
|
# Log files
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
@ -0,0 +1,5 @@
|
|||||||
|
module.exports = {
|
||||||
|
presets: [
|
||||||
|
'@vue/cli-plugin-babel/preset'
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es5",
|
||||||
|
"module": "esnext",
|
||||||
|
"baseUrl": "./",
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"paths": {
|
||||||
|
"@/*": [
|
||||||
|
"src/*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"lib": [
|
||||||
|
"esnext",
|
||||||
|
"dom",
|
||||||
|
"dom.iterable",
|
||||||
|
"scripthost"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "vue",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"serve": "vue-cli-service serve",
|
||||||
|
"build": "vue-cli-service build"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"axios": "^1.6.7",
|
||||||
|
"core-js": "^3.35.1",
|
||||||
|
"echarts": "^5.5.0",
|
||||||
|
"element-ui": "^2.15.14",
|
||||||
|
"vue": "^2.6.14",
|
||||||
|
"vue-router": "^3.5.1",
|
||||||
|
"vuex": "^3.6.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@vue/cli-plugin-babel": "~5.0.0",
|
||||||
|
"@vue/cli-plugin-router": "~5.0.0",
|
||||||
|
"@vue/cli-service": "~5.0.0",
|
||||||
|
"scope": "^0.10.1",
|
||||||
|
"vue-template-compiler": "^2.6.14"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"> 1%",
|
||||||
|
"last 2 versions",
|
||||||
|
"not dead"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 4.2 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<noscript>
|
||||||
|
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||||
|
</noscript>
|
||||||
|
<div id="app"></div>
|
||||||
|
<!-- built files will be auto injected -->
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,11 @@
|
|||||||
|
<template>
|
||||||
|
<div id="app">
|
||||||
|
<router-view/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
#app{
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
</style>
|
After Width: | Height: | Size: 6.7 KiB |
@ -0,0 +1,473 @@
|
|||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "Aside",
|
||||||
|
props:{
|
||||||
|
isCollapse: Boolean,
|
||||||
|
logoTextShow: Boolean
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-menu :default-openeds="['1', '3']" style="min-height: 100%; overflow-x: hidden"
|
||||||
|
background-color="rgb(48, 65, 86)"
|
||||||
|
text-color="#fff"
|
||||||
|
active-text-color="#ffd04b"
|
||||||
|
:collapse-transition="false"
|
||||||
|
:collapse="isCollapse"
|
||||||
|
router
|
||||||
|
>
|
||||||
|
<div style="height: 60px; line-height: 60px; text-align: center">
|
||||||
|
<img src="../assets/logo.png" alt="" style="width: 20px; position: relative; top: 5px; right: 5px">
|
||||||
|
<b style="color: white" v-show="logoTextShow">脑电数据管理系统</b>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-submenu index="/">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-home"></i>
|
||||||
|
<span slot="title">主页</span>
|
||||||
|
</template>
|
||||||
|
<el-menu-item index="/">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-house"></i>
|
||||||
|
<span slot="title">主页</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
</el-submenu>
|
||||||
|
|
||||||
|
<el-submenu index="2">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-menu"></i>
|
||||||
|
<span slot="title">脑电采集</span>
|
||||||
|
</template>
|
||||||
|
<el-menu-item index="/sample1">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-grid"></i>
|
||||||
|
<span slot="title">第1组</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/sample2">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-grid"></i>
|
||||||
|
<span slot="title">第2组</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/sample3">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-grid"></i>
|
||||||
|
<span slot="title">第3组</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/sample4">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-grid"></i>
|
||||||
|
<span slot="title">第4组</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/sample5">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-grid"></i>
|
||||||
|
<span slot="title">第5组</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
</el-submenu>
|
||||||
|
|
||||||
|
<el-submenu index="3">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user-solid"></i>
|
||||||
|
<span slot="title">人员识别</span>
|
||||||
|
</template>
|
||||||
|
<el-menu-item index="/id1">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试1号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id2">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试2号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id3">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试3号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id4">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试4号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id5">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试5号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id6">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试6号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id7">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试7号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id8">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试8号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id9">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试9号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id10">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试10号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id11">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试11号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id12">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试12号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id13">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试13号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id14">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试14号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id15">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试15号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id16">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试16号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id17">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试17号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id18">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试18号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id19">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试19号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id20">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试20号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id21">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试21号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id22">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试22号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id23">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试23号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id24">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试24号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id25">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试25号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id26">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试26号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id27">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试27号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id28">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试28号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id29">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试29号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/id30">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-user"></i>
|
||||||
|
<span slot="title">被试30号</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
</el-submenu>
|
||||||
|
|
||||||
|
<el-submenu index="4">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-data"></i>
|
||||||
|
<span slot="title">内容识别</span>
|
||||||
|
</template>
|
||||||
|
<el-menu-item index="/data1">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据1/句子1</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data2">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据2/句子2</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data3">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据3/句子3</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data4">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据4/句子4</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data5">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据5/句子5</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data6">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据6/句子6</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data7">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据7/句子7</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data8">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据8/句子8</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data9">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据9/句子9</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data10">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据10/句子10</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data11">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据11/句子11</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data12">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据12/句子12</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data13">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据13/句子13</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data14">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据14/句子14</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data15">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据15/句子15</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data16">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据16/句子16</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data17">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据17/句子17</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data18">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据18/句子18</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data19">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据19/句子19</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data20">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据20/句子20</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data21">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据21/句子21</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data22">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据22/句子22</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data23">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据23/句子23</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data24">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据24/句子24</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data25">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据25/句子25</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data26">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据26/句子26</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data27">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据27/句子27</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data28">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据28/句子28</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data29">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据29/句子29</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/data30">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-opportunity"></i>
|
||||||
|
<span slot="title">数据30/句子30</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
</el-submenu>
|
||||||
|
|
||||||
|
<el-submenu index="5">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-platform"></i>
|
||||||
|
<span slot="title">脑电分析</span>
|
||||||
|
</template>
|
||||||
|
<el-menu-item index="/brain1">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-comment"></i>
|
||||||
|
<span slot="title">信号示例1</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
<el-menu-item index="/brain2">
|
||||||
|
<template slot="title">
|
||||||
|
<i class="el-icon-s-comment"></i>
|
||||||
|
<span slot="title">信号示例2</span>
|
||||||
|
</template>
|
||||||
|
</el-menu-item>
|
||||||
|
</el-submenu>
|
||||||
|
|
||||||
|
</el-menu>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
@ -0,0 +1,58 @@
|
|||||||
|
<template>
|
||||||
|
<div class="hello">
|
||||||
|
<h1>{{ msg }}</h1>
|
||||||
|
<p>
|
||||||
|
For a guide and recipes on how to configure / customize this project,<br>
|
||||||
|
check out the
|
||||||
|
<a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
|
||||||
|
</p>
|
||||||
|
<h3>Installed CLI Plugins</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank" rel="noopener">babel</a></li>
|
||||||
|
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-router" target="_blank" rel="noopener">router</a></li>
|
||||||
|
</ul>
|
||||||
|
<h3>Essential Links</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
|
||||||
|
<li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
|
||||||
|
<li><a href="https://chat.vuejs.org" target="_blank" rel="noopener">Community Chat</a></li>
|
||||||
|
<li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
|
||||||
|
<li><a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a></li>
|
||||||
|
</ul>
|
||||||
|
<h3>Ecosystem</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://router.vuejs.org" target="_blank" rel="noopener">vue-router</a></li>
|
||||||
|
<li><a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a></li>
|
||||||
|
<li><a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank" rel="noopener">vue-devtools</a></li>
|
||||||
|
<li><a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener">vue-loader</a></li>
|
||||||
|
<li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'HelloWorld',
|
||||||
|
props: {
|
||||||
|
msg: String
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||||
|
<style scoped>
|
||||||
|
h3 {
|
||||||
|
margin: 40px 0 0;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0 10px;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #42b983;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,24 @@
|
|||||||
|
import Vue from 'vue'
|
||||||
|
import App from './App.vue'
|
||||||
|
import router from './router'
|
||||||
|
import ElementUI from 'element-ui';
|
||||||
|
import 'element-ui/lib/theme-chalk/index.css';
|
||||||
|
import './assets/global_settings.css'
|
||||||
|
import request from "@/utils/request";
|
||||||
|
import store from "@/store";
|
||||||
|
|
||||||
|
|
||||||
|
Vue.config.productionTip = false
|
||||||
|
|
||||||
|
// import ElementUI for this project, and set default size
|
||||||
|
// Vue.use(ElementUI, {size:"small"});
|
||||||
|
// default size is a little bit bigger
|
||||||
|
Vue.use(ElementUI, {size:"mini"});
|
||||||
|
|
||||||
|
Vue.prototype.request=request
|
||||||
|
|
||||||
|
new Vue({
|
||||||
|
router,
|
||||||
|
store,
|
||||||
|
render: h => h(App)
|
||||||
|
}).$mount('#app')
|
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 40 KiB |