refactor(接口自动化): 接口自动化参数设置 tab 命名优化
This commit is contained in:
parent
15dfa118ed
commit
60f5be14d3
|
@ -160,7 +160,7 @@
|
|||
</ms-container>
|
||||
</el-tab-pane>
|
||||
|
||||
<el-tab-pane :label="$t('api_test.variable')">
|
||||
<el-tab-pane :label="$t('api_test.request.jmeter_func')">
|
||||
<el-row>
|
||||
<el-col :span="18" class="col-height">
|
||||
<div>
|
||||
|
|
|
@ -88,11 +88,12 @@
|
|||
|
||||
<script>
|
||||
import {getCurrentProjectID, getCurrentUserId} from "@/common/js/utils";
|
||||
import VersionSelect from "@/business/components/xpack/version/VersionSelect";
|
||||
const requireComponent = require.context('@/business/components/xpack/', true, /\.vue$/);
|
||||
const VersionSelect = requireComponent.keys().length > 0 ? requireComponent("./version/VersionSelect.vue") : {};
|
||||
|
||||
export default {
|
||||
name: "TestCaseCommonImport",
|
||||
components: {VersionSelect},
|
||||
components: {'VersionSelect': VersionSelect.default},
|
||||
props: ['tabName', 'name'],
|
||||
data() {
|
||||
return {
|
||||
|
|
Loading…
Reference in New Issue