fix(场景自动化): 自定义请求修复
This commit is contained in:
parent
d1b32083da
commit
dd7843525c
|
@ -143,7 +143,7 @@
|
|||
highlight-current
|
||||
@node-expand="nodeExpand"
|
||||
@node-collapse="nodeCollapse"
|
||||
:allow-drop="allowDrop" @node-drag-end="allowDrag" @node-click="nodeClick" v-if="!loading" draggable class="ms-is-leaf">
|
||||
:allow-drop="allowDrop" @node-drag-end="allowDrag" @node-click="nodeClick" v-if="!loading" draggable>
|
||||
<span class="custom-tree-node father" slot-scope="{ node, data}" style="width: 96%">
|
||||
<!-- 步骤组件-->
|
||||
<ms-component-config :type="data.type" :scenario="data" :response="response" :currentScenario="currentScenario"
|
||||
|
@ -1037,11 +1037,11 @@
|
|||
z-index: 1;
|
||||
}
|
||||
|
||||
/deep/ .el-tree-node__expand-icon.expanded {
|
||||
.ms-expanded >>> .el-tree-node__expand-icon.expanded {
|
||||
color: #7C3985;
|
||||
}
|
||||
|
||||
/deep/ .el-icon-caret-right {
|
||||
.ms-el-icon-caret-right .el-icon-caret-right {
|
||||
color: #7C3985;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<ms-run :debug="true" :reportId="reportId" :run-data="runData" @runRefresh="runRefresh" ref="runTest"/>
|
||||
</el-card>
|
||||
<div v-if="scenario">
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as')"> {{$t('commons.save')}}</el-button>
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as_api')"> {{$t('commons.save')}}</el-button>
|
||||
</div>
|
||||
<!-- 加载用例 -->
|
||||
<ms-api-case-list :loaded="false" ref="caseList"/>
|
||||
|
@ -103,7 +103,10 @@
|
|||
handleCommand(e) {
|
||||
if (e === "save_as") {
|
||||
this.saveAs();
|
||||
} else {
|
||||
} else if (e === 'save_as_api') {
|
||||
this.saveAsApi();
|
||||
}
|
||||
else {
|
||||
this.runDebug();
|
||||
}
|
||||
},
|
||||
|
@ -121,6 +124,11 @@
|
|||
this.loading = false;
|
||||
this.$refs.debugResult.reload();
|
||||
},
|
||||
saveAsApi() {
|
||||
let obj = {request: this.request};
|
||||
obj.request.id = getUUID();
|
||||
this.$emit('saveAs', obj);
|
||||
},
|
||||
saveAs() {
|
||||
let obj = {request: this.request};
|
||||
obj.request.id = getUUID();
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
</el-card>
|
||||
|
||||
<div v-if="scenario">
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as')"> {{$t('commons.save')}}</el-button>
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as_api')"> {{$t('commons.save')}}</el-button>
|
||||
</div>
|
||||
<!-- 加载用例 -->
|
||||
<ms-api-case-list :loaded="false" ref="caseList"/>
|
||||
|
@ -131,7 +131,10 @@
|
|||
handleCommand(e) {
|
||||
if (e === "save_as") {
|
||||
this.saveAs();
|
||||
} else {
|
||||
} else if (e === 'save_as_api') {
|
||||
this.saveAsApi();
|
||||
}
|
||||
else {
|
||||
this.runDebug();
|
||||
}
|
||||
},
|
||||
|
@ -157,6 +160,22 @@
|
|||
this.loading = false;
|
||||
this.$refs.debugResult.reload();
|
||||
},
|
||||
saveAsApi() {
|
||||
this.$refs['debugForm'].validate((valid) => {
|
||||
if (valid) {
|
||||
this.debugForm.id = null;
|
||||
this.request.id = getUUID();
|
||||
this.debugForm.request = this.request;
|
||||
this.debugForm.userId = getCurrentUser().id;
|
||||
this.debugForm.status = "Underway";
|
||||
this.debugForm.protocol = this.currentProtocol;
|
||||
this.$emit('saveAs', this.debugForm);
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
})
|
||||
},
|
||||
saveAs() {
|
||||
this.$refs['debugForm'].validate((valid) => {
|
||||
if (valid) {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<ms-run :debug="true" :reportId="reportId" :run-data="runData" @runRefresh="runRefresh" ref="runTest"/>
|
||||
</el-card>
|
||||
<div v-if="scenario">
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as')"> {{$t('commons.save')}}</el-button>
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as_api')"> {{$t('commons.save')}}</el-button>
|
||||
</div>
|
||||
<!-- 加载用例 -->
|
||||
<ms-api-case-list :loaded="false" ref="caseList"/>
|
||||
|
@ -105,7 +105,10 @@
|
|||
handleCommand(e) {
|
||||
if (e === "save_as") {
|
||||
this.saveAs();
|
||||
} else {
|
||||
} else if (e === 'save_as_api') {
|
||||
this.saveAsApi();
|
||||
}
|
||||
else {
|
||||
this.$refs['requestForm'].validate();
|
||||
}
|
||||
},
|
||||
|
@ -123,6 +126,11 @@
|
|||
this.loading = false;
|
||||
this.$refs.debugResult.reload();
|
||||
},
|
||||
saveAsApi() {
|
||||
let obj = {request: this.request};
|
||||
obj.request.id = getUUID();
|
||||
this.$emit('saveAs', obj);
|
||||
},
|
||||
saveAs() {
|
||||
let obj = {request: this.request};
|
||||
obj.request.id = getUUID();
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
<ms-run :debug="true" :reportId="reportId" :run-data="runData" @runRefresh="runRefresh" ref="runTest"/>
|
||||
</el-card>
|
||||
<div v-if="scenario">
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as')"> {{$t('commons.save')}}</el-button>
|
||||
<el-button style="float: right;margin: 20px" type="primary" @click="handleCommand('save_as_api')"> {{$t('commons.save')}}</el-button>
|
||||
</div>
|
||||
<!-- 加载用例 -->
|
||||
<ms-api-case-list :loaded="false" ref="caseList"/>
|
||||
|
@ -120,6 +120,8 @@
|
|||
handleCommand(e) {
|
||||
if (e === "save_as") {
|
||||
this.saveAs();
|
||||
} else if (e === 'save_as_api') {
|
||||
this.saveAsApi();
|
||||
} else {
|
||||
this.$refs['requestForm'].validate();
|
||||
}
|
||||
|
@ -138,6 +140,11 @@
|
|||
this.loading = false;
|
||||
this.$refs.debugResult.reload();
|
||||
},
|
||||
saveAsApi() {
|
||||
let obj = {request: this.request};
|
||||
obj.request.id = getUUID();
|
||||
this.$emit('saveAs', obj);
|
||||
},
|
||||
saveAs() {
|
||||
let obj = {request: this.request};
|
||||
obj.request.server = this.debugForm.server;
|
||||
|
|
Loading…
Reference in New Issue