Commit ec1d0294 ec1d0294d7b204b2aa95bb6583215d6ace78bee0 by zhanghao

commit

1 parent b800c9fa
<template xmlns:el-col="http://www.w3.org/1999/html">
<div class="content">
<el-image
:src="url"
:preview-src-list="srcList">
</el-image>
</div>
</template>
<style>
.content {
display: flex;
justify-content: center;
align-items: center;
padding-top: 20px;
}
</style>
<script>
export default {
data() {
return {
url: '../../static/androidcode.png',
srcList: [
'../../static/androidcode.png'
]
}
}
}
</script>
......@@ -14,7 +14,8 @@
<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="/androidCode">小佗线上包二维码</el-menu-item>
<el-menu-item index="/androidCodeAime">AIME健康线上包二维码</el-menu-item>
<el-menu-item><a class="link" href="http://39.105.142.246:8080/android/new/log.html" target="_blank">Android UI自动化</a></el-menu-item>
<el-menu-item><a class="link" href="http://39.105.142.246:8080/ios/new/log.html" target="_blank">IOS UI自动化</a></el-menu-item>
</el-submenu>
......
......@@ -19,6 +19,7 @@ import hadoop from '@/page/hadoop'
import queryProvince from '@/page/queryProvince'
import selectActStart from '@/page/selectActStart'
import androidCode from '@/page/androidCode'
import androidCodeAime from '@/page/androidCodeAime'
import queryTjAccount from '@/page/queryTjAccount'
import testHouLi from '@/page/testHouLi'
import chouJiang from '@/page/chouJiang'
......@@ -194,6 +195,14 @@ export default new Router({
}
},
{
path: '/androidCodeAime',
component: androidCodeAime,
name: 'androidCodeAime',
meta: {
title: '测试工具平台'
}
},
{
path: '/testHouLi',
component: testHouLi,
name: 'testHouLi',
......