-
- {{ $t('api_test.automation.open_expansion') }}
-
-
- {{ $t('api_test.automation.close_expansion') }}
-
+
+
+
+
+
+
+
+
+
+
+
+
0) {
+ this.stepStatus(this.scenarioDefinition[i].hashTree);
+ }
+ }
+ }
+ },
+ stepStatus(nodes) {
+ for (let i in nodes) {
+ if (nodes[i]) {
+ nodes[i].enable = this.stepEnable;
+ if (nodes[i].hashTree != undefined && nodes[i].hashTree.length > 0) {
+ this.stepStatus(nodes[i].hashTree);
+ }
+ }
+ }
+ },
+ enableAll() {
+ this.stepEnable = true;
+ this.stepNode();
+ },
+ disableAll() {
+ this.stepEnable = false;
+ this.stepNode();
}
}
}
@@ -1147,8 +1183,13 @@ export default {
.ms-open-btn {
margin: 5px 5px 0px;
- font-size: 10px;
+ color: #6D317C;
+ font-size: 20px;
+}
+
+.ms-open-btn:hover {
background-color: #F2F9EE;
+ cursor: pointer;
color: #67C23A;
}