1bb91313 by 杨威

号段管理模块

1 parent 5f56d429
...@@ -2,16 +2,18 @@ ...@@ -2,16 +2,18 @@
2 <el-tabs v-model="activeName" @tab-click="handleClick"> 2 <el-tabs v-model="activeName" @tab-click="handleClick">
3 <el-tab-pane label="日志管理" name="log"><log></log></el-tab-pane> 3 <el-tab-pane label="日志管理" name="log"><log></log></el-tab-pane>
4 <el-tab-pane label="字典管理" name="dictionary"><dictionary></dictionary></el-tab-pane> 4 <el-tab-pane label="字典管理" name="dictionary"><dictionary></dictionary></el-tab-pane>
5 <el-tab-pane label="号段管理" name="hdgl"><hdgl></hdgl></el-tab-pane>
5 </el-tabs> 6 </el-tabs>
6 </template> 7 </template>
7 8
8 <script> 9 <script>
9 import log from "./log/index" 10 import log from "./log"
10 import dictionary from "./dictionary/index" 11 import dictionary from "./dictionary"
12 import hdgl from "./hdgl";
11 export default { 13 export default {
12 name: "index", 14 name: "index",
13 components: { 15 components: {
14 log,dictionary 16 log,dictionary,hdgl
15 }, 17 },
16 data() { 18 data() {
17 return { 19 return {
......