index.vue
3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<template xmlns:el-col="http://www.w3.org/1999/html">
<div>
<el-menu
:default-active="activeIndex"
class="el-menu-demo"
mode="horizontal"
@select="handleSelect"
router
background-color="#545c64"
text-color="#fff"
active-text-color="#ffd04b">
<el-submenu index="1">
<template slot="title">国寿AI健康</template>
<el-menu-item index="/tool">测试工具1.0</el-menu-item>
<el-menu-item index="/tool2">测试工具2.0</el-menu-item>
<el-menu-item index="/toolAime">测试工具-AIME健康</el-menu-item>
<el-menu-item index="/androidCode">小佗线上包二维码</el-menu-item>
<el-menu-item index="/androidCodeAime">AIME健康线上包二维码</el-menu-item>
</el-submenu>
<el-submenu index="2">
<template slot="title">云活动平台</template>
<el-menu-item index="/toolWaiBao">测试工具</el-menu-item>
</el-submenu>
<!--
<el-submenu index="3">
<template slot="title">数据分析</template>
<el-menu-item index="/toolData">测试工具</el-menu-item>
</el-submenu>
-->
<el-submenu index="4">
<template slot="title">统计平台</template>
<el-menu-item index="/tjUser">线上账号</el-menu-item>
</el-submenu>
<!-- <el-submenu index="4">-->
<!-- <template slot="title">大数据</template>-->
<!-- <el-menu-item index="/hadoop">接口调用次数统计</el-menu-item>-->
<!-- </el-submenu>-->
<el-submenu index="5">
<template slot="title">居家办公必备</template>
<el-menu-item><a class="link" href="https://chinalife.jxbrty.com/organ/data#/statistics" target="_blank">统计平台网址</a></el-menu-item>
<el-menu-item><a class="link" href="http://zentao.jxbrty.cn/www/index.php?m=my&f=index" target="_blank">禅道</a></el-menu-item>
<el-menu-item><a class="link" href="http://confluence.jxbrty.cn/pages/viewpage.action?pageId=327684" target="_blank">wiki</a></el-menu-item>
<el-menu-item><a class="link" href="https://web.jxbrty.com/prd/#/" target="_blank">需求文档</a></el-menu-item>
<el-menu-item><a class="link" href="https://devops.jxbrty.com/" target="_blank">运营平台</a></el-menu-item>
<el-menu-item><a class="link" href="https://cloud-act.jxbrty.com/admin/login" target="_blank">云活动平台</a></el-menu-item>
<el-menu-item><a class="link" href="https://codesign.qq.com/app/design" target="_blank">设计图</a></el-menu-item>
<el-menu-item><a class="link" href="https://picc.jxbrty.com/stat/#/passport" target="_blank">人保数据中心</a></el-menu-item>
</el-submenu>
<el-submenu index="6">
<template slot="title">常用链接</template>
<el-menu-item><a class="link" href="http://43.140.221.162:8080/jenkins/" target="_blank">测试jenkins</a></el-menu-item>
<el-menu-item><a class="link" href="http://seafile.jxbrty.com/" target="_blank">APP安装包下载</a></el-menu-item>
<el-menu-item><a class="link" href="http://gitlab.jxbrty.com/" target="_blank">GitLab平台</a></el-menu-item>
<el-menu-item><a class="link" href="https://qiye.aliyun.com/alimail/auth/login" target="_blank">阿里云邮箱WEB版</a></el-menu-item>
<el-menu-item><a class="link" href="http://sfz.uzuzuz.com/" target="_blank">身份证号码生成</a></el-menu-item>
<el-menu-item><a class="link" href="https://www.bejson.com/" target="_blank">JSON格式化工具</a></el-menu-item>
</el-submenu>
</el-menu>
<router-view/>
</div>
</template>
<style>
.link{
color: inherit;
}
</style>
<script>
export default {
data() {
return {
activeIndex: '1'
}
},
methods: {
handleSelect(key, keyPath) {
console.log(key, keyPath);
}
}
}
</script>