feat(接口测试): 接口测试忽略标签展示修改
This commit is contained in:
parent
39eee30510
commit
158409ac5a
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<MsTag
|
<MsTag
|
||||||
v-if="props.inconsistentWithApi"
|
v-if="props.inconsistentWithApi || props.ignoreApiChange || props.ignoreApiDiff"
|
||||||
class="cursor-pointer font-normal"
|
class="cursor-pointer font-normal"
|
||||||
:type="props.ignoreApiDiff ? 'default' : 'warning'"
|
:type="props.ignoreApiDiff ? 'default' : 'warning'"
|
||||||
theme="light"
|
theme="light"
|
||||||
|
|
|
@ -112,7 +112,6 @@
|
||||||
import MsDrawer from '@/components/pure/ms-drawer/index.vue';
|
import MsDrawer from '@/components/pure/ms-drawer/index.vue';
|
||||||
import { TabItem } from '@/components/pure/ms-editable-tab/types';
|
import { TabItem } from '@/components/pure/ms-editable-tab/types';
|
||||||
import DiffItem from './diffItem.vue';
|
import DiffItem from './diffItem.vue';
|
||||||
import DiffRequestBody from './diffRequestBody.vue';
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
clearThisChange,
|
clearThisChange,
|
||||||
|
@ -134,6 +133,8 @@
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const DiffRequestBody = defineAsyncComponent(() => import('./diffRequestBody.vue'));
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
activeApiCaseId: string;
|
activeApiCaseId: string;
|
||||||
activeDefinedId: string;
|
activeDefinedId: string;
|
||||||
|
|
Loading…
Reference in New Issue