1bb91313 by 杨威

号段管理模块

1 parent 5f56d429
......@@ -2,16 +2,18 @@
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="日志管理" name="log"><log></log></el-tab-pane>
<el-tab-pane label="字典管理" name="dictionary"><dictionary></dictionary></el-tab-pane>
<el-tab-pane label="号段管理" name="hdgl"><hdgl></hdgl></el-tab-pane>
</el-tabs>
</template>
<script>
import log from "./log/index"
import dictionary from "./dictionary/index"
import log from "./log"
import dictionary from "./dictionary"
import hdgl from "./hdgl";
export default {
name: "index",
components: {
log,dictionary
log,dictionary,hdgl
},
data() {
return {
......