fix(接口测试): 修复查看场景引用样式问题

This commit is contained in:
RubyLiu 2023-06-25 17:28:49 +08:00 committed by fit2-zhao
parent bb9f798e7a
commit 244cde5eb6
2 changed files with 5 additions and 2 deletions

View File

@ -1107,7 +1107,7 @@ export default {
};
</script>
<style scoped>
<style lang="scss" scoped>
.ms-api-div {
overflow-y: hidden;
height: calc(100vh - 100px);

View File

@ -1,5 +1,5 @@
<template>
<el-dialog :visible.sync="isVisible" class="advanced-item-value" width="880px">
<el-dialog :visible.sync="isVisible" class="advanced-item-value" width="922px">
<el-tabs tab-position="top" style="width: 100%" v-model="activeName" @tab-click="handleClick">
<el-tab-pane
:label="$t('api_test.home_page.api_details_card.title')+$t('api_test.home_page.test_scene_details_card.title')"
@ -485,4 +485,7 @@ export default {
:deep(.el-dialog__body) {
padding: 0 20px 30px 20px;
}
:deep(.el-tabs__nav-wrap) {
width: 100% !important;
}
</style>