Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
xiaofang li
MeterSphere
Commits
f3190f5b
Unverified
Commit
f3190f5b
authored
4 years ago
by
BugKing
Committed by
GitHub
4 years ago
Browse files
Options
Download
Plain Diff
Merge branch 'v1.8' into pr@v1.8@refactor_sellect_all_style
parents
bb17b17b
2c5ccaef
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
frontend/src/business/components/track/plan/view/comonents/api/TestPlanApiCaseList.vue
+2
-1
...nts/track/plan/view/comonents/api/TestPlanApiCaseList.vue
frontend/src/business/components/track/plan/view/comonents/functional/FunctionalTestCaseEdit.vue
+4
-0
...plan/view/comonents/functional/FunctionalTestCaseEdit.vue
frontend/src/business/components/track/review/view/components/TestReviewTestCaseEdit.vue
+4
-0
...s/track/review/view/components/TestReviewTestCaseEdit.vue
frontend/src/common/css/main.css
+4
-0
frontend/src/common/css/main.css
with
14 additions
and
1 deletion
+14
-1
frontend/src/business/components/track/plan/view/comonents/api/TestPlanApiCaseList.vue
+
2
-
1
View file @
f3190f5b
...
...
@@ -509,13 +509,14 @@ export default {
},
batchRun
(
runData
,
reportId
)
{
let
testPlan
=
new
TestPlan
();
let
projectId
=
this
.
$store
.
state
.
projectId
;
let
threadGroup
=
new
ThreadGroup
();
threadGroup
.
hashTree
=
[];
testPlan
.
hashTree
=
[
threadGroup
];
runData
.
forEach
(
item
=>
{
threadGroup
.
hashTree
.
push
(
item
);
});
let
reqObj
=
{
id
:
reportId
,
testElement
:
testPlan
,
type
:
'
API_PLAN
'
,
reportId
:
"
run
"
};
let
reqObj
=
{
id
:
reportId
,
testElement
:
testPlan
,
type
:
'
API_PLAN
'
,
reportId
:
"
run
"
,
projectId
:
projectId
};
let
bodyFiles
=
getBodyUploadFiles
(
reqObj
,
runData
);
this
.
$fileUpload
(
"
/api/definition/run
"
,
null
,
bodyFiles
,
reqObj
,
response
=>
{
});
...
...
This diff is collapsed.
Click to expand it.
frontend/src/business/components/track/plan/view/comonents/functional/FunctionalTestCaseEdit.vue
+
4
-
0
View file @
f3190f5b
...
...
@@ -714,6 +714,10 @@ export default {
color
:
#060505
;
}
.border-hidden
>>>
*[
disabled
]
{
opacity
:
0.7
;
}
.cast_label
{
color
:
dimgray
;
}
...
...
This diff is collapsed.
Click to expand it.
frontend/src/business/components/track/review/view/components/TestReviewTestCaseEdit.vue
+
4
-
0
View file @
f3190f5b
...
...
@@ -555,4 +555,8 @@ export default {
background-color
:
white
;
color
:
#060505
;
}
.tb-edit
>>>
*[
disabled
]
{
opacity
:
0.7
;
}
</
style
>
This diff is collapsed.
Click to expand it.
frontend/src/common/css/main.css
+
4
-
0
View file @
f3190f5b
...
...
@@ -28,6 +28,10 @@ html,body {
height
:
100%
}
textarea
{
font-family
:
"Helvetica Neue"
,
Helvetica
,
"PingFang SC"
,
"Hiragino Sans GB"
,
Arial
,
sans-serif
;
}
.main-content
span
.title
{
font-size
:
16px
;
font-weight
:
500
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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
Menu
Projects
Groups
Snippets
Help