feat(测试跟踪): 执行步骤复制
This commit is contained in:
parent
78b0b348a0
commit
1488109f23
|
@ -176,6 +176,12 @@
|
||||||
icon="el-icon-plus"
|
icon="el-icon-plus"
|
||||||
circle size="mini"
|
circle size="mini"
|
||||||
@click="handleAddStep(scope.$index, scope.row)"></el-button>
|
@click="handleAddStep(scope.$index, scope.row)"></el-button>
|
||||||
|
<el-button
|
||||||
|
icon="el-icon-document-copy"
|
||||||
|
type="success"
|
||||||
|
:disabled="readOnly"
|
||||||
|
circle size="mini"
|
||||||
|
@click="handleCopyStep(scope.$index, scope.row)"></el-button>
|
||||||
<el-button
|
<el-button
|
||||||
type="danger"
|
type="danger"
|
||||||
icon="el-icon-delete"
|
icon="el-icon-delete"
|
||||||
|
@ -361,6 +367,18 @@ export default {
|
||||||
});
|
});
|
||||||
this.form.steps.splice(index + 1, 0, step);
|
this.form.steps.splice(index + 1, 0, step);
|
||||||
},
|
},
|
||||||
|
handleCopyStep(index, data) {
|
||||||
|
let step = {};
|
||||||
|
step.num = data.num + 1;
|
||||||
|
step.desc = data.desc;
|
||||||
|
step.result = data.result;
|
||||||
|
this.form.steps.forEach(step => {
|
||||||
|
if (step.num > data.num) {
|
||||||
|
step.num++;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.form.steps.splice(index + 1, 0, step);
|
||||||
|
},
|
||||||
handleDeleteStep(index, data) {
|
handleDeleteStep(index, data) {
|
||||||
this.form.steps.splice(index, 1);
|
this.form.steps.splice(index, 1);
|
||||||
this.form.steps.forEach(step => {
|
this.form.steps.forEach(step => {
|
||||||
|
|
Loading…
Reference in New Issue