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
691d0961
...
691d096157672b804b505622aee07ea33b4765b7
authored
2021-05-18 16:48:01 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
6ca0b401
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
16 deletions
src/page/callLinuxLogByUid.vue
src/page/tool.vue
src/page/callLinuxLogByUid.vue
View file @
691d096
...
...
@@ -21,7 +21,7 @@
data
()
{
return
{
uid
:
this
.
$route
.
query
.
uid
,
huanjing
:
this
.
$route
.
query
.
huanjing
,
method
:
this
.
$route
.
query
.
method
,
callLinuxLogByUid
:
[]
}
},
...
...
@@ -43,7 +43,7 @@
}
this
.
$http
.
get
(
'/tool/callLinuxLogByUid?'
+
this
.
$qs
.
stringify
({
uid
:
this
.
uid
,
type
:
this
.
huanjing
method
:
this
.
method
}),
config
).
then
((
res
)
=>
{
console
.
log
(
res
.
data
)
this
.
callLinuxLogByUid
=
res
.
data
...
...
src/page/tool.vue
View file @
691d096
...
...
@@ -412,14 +412,7 @@
<el-input
placeholder=
"请输入UID"
v-model=
"callLinuxLogByUid.uid"
clearable
></el-input>
</el-form-item>
<el-form-item>
<el-select
v-model=
"callLinuxLogByUid.huanjing"
placeholder=
"请选择执行环境"
>
<el-option
v-for=
"item in callLinuxLogByUidOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
<el-input
placeholder=
"请输入method"
v-model=
"callLinuxLogByUid.method"
clearable
disabled
></el-input>
</el-form-item>
<div
style=
"margin: 15px 0;"
></div>
<el-form-item>
...
...
@@ -668,12 +661,8 @@
}],
callLinuxLogByUid
:
{
uid
:
''
,
huanjing
:
[]
method
:
''
},
callLinuxLogByUidOptions
:
[{
value
:
'0'
,
label
:
'测试环境'
}],
queryUserInfo
:
{
agentPhone
:
''
,
huanjing
:
[]
...
...
@@ -1141,7 +1130,7 @@
},
callLinuxLogByUidSubmit
()
{
const
{
href
}
=
this
.
$router
.
resolve
({
name
:
'callLinuxLogByUid'
,
query
:
{
uid
:
this
.
callLinuxLogByUid
.
uid
,
huanjing
:
this
.
callLinuxLogByUid
.
huanjing
.
toString
()
}})
{
uid
:
this
.
callLinuxLogByUid
.
uid
,
method
:
this
.
callLinuxLogByUid
.
method
}})
window
.
open
(
href
,
'_blank'
)
},
queryProvinceSubmit
()
{
...
...
Please
register
or
sign in
to post a comment