refactor(测试跟踪): 测试计划报告调整UI和性能的顺序
This commit is contained in:
parent
fdfe195587
commit
08578e7a85
|
@ -211,7 +211,7 @@ public abstract class ZentaoClient extends BaseClient {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LogUtil.info("query zentao product info error. product id: " + relateId);
|
LogUtil.error("checkProjectExist error: " + response.getBody());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
:is-template="isTemplate" :plan-id="planId" :report="report"/>
|
:is-template="isTemplate" :plan-id="planId" :report="report"/>
|
||||||
<test-plan-api-report v-if="apiEnable" :is-db="isDb" :share-id="shareId" :is-share="isShare"
|
<test-plan-api-report v-if="apiEnable" :is-db="isDb" :share-id="shareId" :is-share="isShare"
|
||||||
:is-template="isTemplate" :report="report" :plan-id="planId"/>
|
:is-template="isTemplate" :report="report" :plan-id="planId"/>
|
||||||
<test-plan-load-report v-if="loadEnable" :is-db="isDb" :share-id="shareId" :is-share="isShare"
|
|
||||||
:is-template="isTemplate" :report="report" :plan-id="planId"/>
|
|
||||||
<test-plan-ui-report v-if="uiEnable" :is-db="isDb" :share-id="shareId" :is-share="isShare"
|
<test-plan-ui-report v-if="uiEnable" :is-db="isDb" :share-id="shareId" :is-share="isShare"
|
||||||
:is-template="isTemplate" :report="report" :plan-id="planId"/>
|
:is-template="isTemplate" :report="report" :plan-id="planId"/>
|
||||||
|
<test-plan-load-report v-if="loadEnable" :is-db="isDb" :share-id="shareId" :is-share="isShare"
|
||||||
|
:is-template="isTemplate" :report="report" :plan-id="planId"/>
|
||||||
</el-card>
|
</el-card>
|
||||||
</ms-main-container>
|
</ms-main-container>
|
||||||
<test-plan-report-navigation-bar
|
<test-plan-report-navigation-bar
|
||||||
|
|
|
@ -58,13 +58,13 @@ export default {
|
||||||
link: 'api',
|
link: 'api',
|
||||||
title: this.$t('test_track.report.analysis_api'),
|
title: this.$t('test_track.report.analysis_api'),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
link: 'load',
|
|
||||||
title: this.$t('test_track.report.analysis_load'),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
link: 'ui',
|
link: 'ui',
|
||||||
title: this.$t('test_track.report.analysis_ui')
|
title: this.$t('test_track.report.analysis_ui')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
link: 'load',
|
||||||
|
title: this.$t('test_track.report.analysis_load'),
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue