Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qa-platform-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QA
qa-platform-ui
Commits
ab9bd6fe
Commit
ab9bd6fe
authored
Jun 16, 2021
by
晓彤
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改数据类型
parent
1c1fa29b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
EditScene.vue
src/views/auto/EditScene.vue
+10
-4
No files found.
src/views/auto/EditScene.vue
View file @
ab9bd6fe
...
...
@@ -45,10 +45,8 @@
<el-row>
<el-col
:span=
"14"
>
<el-button
type=
"primary"
style=
"width:770px;margin-top:20px"
@
click=
"addGlobalListRow()"
class=
"el-icon-circle-plus"
>
添加行
</el-button>
</el-col>
</el-row>
</el-form-item>
</el-collapse-item>
...
...
@@ -259,7 +257,8 @@
<el-button
type=
"success"
plain
@
click=
"AddAssertionListRow()"
class=
"el-icon-circle-plus"
>
添加行
</el-button>
</el-collapse-item>
</el-collapse>
<div
style=
"margin-top:20px;margin-left:400px"
>
<div
style=
"margin-top:20px;margin-left:600px"
>
<el-button
@
click=
"cancelCaseFrom"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"addCaseFrom"
>
确 定
</el-button>
</div>
...
...
@@ -459,7 +458,14 @@ export default {
// 获取场景用例列表
getSceneCaseList
()
{
getSceneCaseList
(
this
.
sceneCaseInfo
).
then
((
resp
)
=>
{
this
.
sceneTestcaseList
=
resp
.
data
.
data
this
.
sceneTestcaseList
=
resp
.
data
.
data
.
sceneTestcaseList
var
globalObject
=
JSON
.
parse
(
resp
.
data
.
data
.
globalParameters
)
for
(
var
key
in
globalObject
)
{
var
temp
=
{}
temp
[
'
globalParamsName
'
]
=
key
temp
[
'
globalParamsValue
'
]
=
globalObject
[
key
]
this
.
globalParamList
.
push
(
temp
)
}
})
},
// 获取模块列表
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment