Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张浩
/
br-client
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
ec1d0294
...
ec1d0294d7b204b2aa95bb6583215d6ace78bee0
authored
2022-12-30 17:57:46 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
b800c9fa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
1 deletions
src/page/androidCodeAime.vue
src/page/index.vue
src/router/index.js
src/page/androidCodeAime.vue
0 → 100644
View file @
ec1d029
<
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
>
src/page/index.vue
View file @
ec1d029
...
...
@@ -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>
...
...
src/router/index.js
View file @
ec1d029
...
...
@@ -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'
,
...
...
Please
register
or
sign in
to post a comment