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