commit
Showing
3 changed files
with
41 additions
and
1 deletions
src/page/androidCodeAime.vue
0 → 100644
| 1 | <template xmlns:el-col="http://www.w3.org/1999/html"> | ||
| 2 | <div class="content"> | ||
| 3 | <el-image | ||
| 4 | :src="url" | ||
| 5 | :preview-src-list="srcList"> | ||
| 6 | </el-image> | ||
| 7 | </div> | ||
| 8 | </template> | ||
| 9 | |||
| 10 | <style> | ||
| 11 | .content { | ||
| 12 | display: flex; | ||
| 13 | justify-content: center; | ||
| 14 | align-items: center; | ||
| 15 | padding-top: 20px; | ||
| 16 | } | ||
| 17 | </style> | ||
| 18 | |||
| 19 | <script> | ||
| 20 | export default { | ||
| 21 | data() { | ||
| 22 | return { | ||
| 23 | url: '../../static/androidcode.png', | ||
| 24 | srcList: [ | ||
| 25 | '../../static/androidcode.png' | ||
| 26 | ] | ||
| 27 | } | ||
| 28 | } | ||
| 29 | } | ||
| 30 | </script> |
| ... | @@ -14,7 +14,8 @@ | ... | @@ -14,7 +14,8 @@ |
| 14 | <el-menu-item index="/tool">测试工具1.0</el-menu-item> | 14 | <el-menu-item index="/tool">测试工具1.0</el-menu-item> |
| 15 | <el-menu-item index="/tool2">测试工具2.0</el-menu-item> | 15 | <el-menu-item index="/tool2">测试工具2.0</el-menu-item> |
| 16 | <el-menu-item index="/toolAime">测试工具-AIME健康</el-menu-item> | 16 | <el-menu-item index="/toolAime">测试工具-AIME健康</el-menu-item> |
| 17 | <el-menu-item index="/androidCode">线上包二维码</el-menu-item> | 17 | <el-menu-item index="/androidCode">小佗线上包二维码</el-menu-item> |
| 18 | <el-menu-item index="/androidCodeAime">AIME健康线上包二维码</el-menu-item> | ||
| 18 | <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> | 19 | <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> |
| 19 | <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> | 20 | <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> |
| 20 | </el-submenu> | 21 | </el-submenu> | ... | ... |
| ... | @@ -19,6 +19,7 @@ import hadoop from '@/page/hadoop' | ... | @@ -19,6 +19,7 @@ import hadoop from '@/page/hadoop' |
| 19 | import queryProvince from '@/page/queryProvince' | 19 | import queryProvince from '@/page/queryProvince' |
| 20 | import selectActStart from '@/page/selectActStart' | 20 | import selectActStart from '@/page/selectActStart' |
| 21 | import androidCode from '@/page/androidCode' | 21 | import androidCode from '@/page/androidCode' |
| 22 | import androidCodeAime from '@/page/androidCodeAime' | ||
| 22 | import queryTjAccount from '@/page/queryTjAccount' | 23 | import queryTjAccount from '@/page/queryTjAccount' |
| 23 | import testHouLi from '@/page/testHouLi' | 24 | import testHouLi from '@/page/testHouLi' |
| 24 | import chouJiang from '@/page/chouJiang' | 25 | import chouJiang from '@/page/chouJiang' |
| ... | @@ -194,6 +195,14 @@ export default new Router({ | ... | @@ -194,6 +195,14 @@ export default new Router({ |
| 194 | } | 195 | } |
| 195 | }, | 196 | }, |
| 196 | { | 197 | { |
| 198 | path: '/androidCodeAime', | ||
| 199 | component: androidCodeAime, | ||
| 200 | name: 'androidCodeAime', | ||
| 201 | meta: { | ||
| 202 | title: '测试工具平台' | ||
| 203 | } | ||
| 204 | }, | ||
| 205 | { | ||
| 197 | path: '/testHouLi', | 206 | path: '/testHouLi', |
| 198 | component: testHouLi, | 207 | component: testHouLi, |
| 199 | name: 'testHouLi', | 208 | name: 'testHouLi', | ... | ... |
-
Please register or sign in to post a comment