fix(接口定义): 修复场景第一次引用场景,可以修改被禁用的步骤的缺陷
--bug=1019922 --user=王孝刚 【接口测试】场景引用其他场景,第一次引用过来后可以开启禁用的步骤 https://www.tapd.cn/55049933/s/1299693
This commit is contained in:
parent
9a3849449f
commit
868f391703
|
@ -1628,6 +1628,10 @@ export default {
|
|||
resetResourceId(hashTree) {
|
||||
hashTree.forEach((item) => {
|
||||
item.resourceId = item.resourceId || getUUID();
|
||||
//引用的场景如果原场景的步骤被禁用了,引用的场景的步骤不可以启用
|
||||
if (item.referenced === 'REF' && !item.enable) {
|
||||
item.refEnable = true;
|
||||
}
|
||||
if (item.hashTree && item.hashTree.length > 0) {
|
||||
this.resetResourceId(item.hashTree);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue