This commit is contained in:
tianshujie98
2021-04-29 14:13:38 +08:00
parent b6da28f99c
commit 63a63135c6
+8 -2
View File
@@ -32,8 +32,14 @@ function createBug(obj)
var onlybody = config.onlybody;
config.onlybody = 'no';
var link = createLink('bug', 'create', params + ',stepIdList=' + stepIdList);
if(openApp == 'my') window.parent.$.apps.open(link, 'qa')
window.open(link, '_parent');
if(openApp == 'my')
{
window.parent.$.apps.open(link, 'qa');
}
else
{
window.open(link, '_parent');
}
config.onlybody = onlybody;
}