Unverified Commit f3190f5b authored by BugKing's avatar BugKing Committed by GitHub
Browse files

Merge branch 'v1.8' into pr@v1.8@refactor_sellect_all_style

parents bb17b17b 2c5ccaef
No related merge requests found
Showing with 14 additions and 1 deletion
+14 -1
......@@ -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 => {
});
......
......@@ -714,6 +714,10 @@ export default {
color: #060505;
}
.border-hidden >>> *[disabled] {
opacity: 0.7;
}
.cast_label {
color: dimgray;
}
......
......@@ -555,4 +555,8 @@ export default {
background-color: white;
color: #060505;
}
.tb-edit >>> *[disabled] {
opacity: 0.7;
}
</style>
......@@ -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;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment