style(测试用例): 修改校验弹窗右侧有滚动条
This commit is contained in:
parent
246f171d22
commit
18b2135216
|
@ -21,7 +21,7 @@ export default {
|
|||
'ms.assertion.typeChecking': 'Type checking',
|
||||
'ms.assertion.addChild': 'Add subfield',
|
||||
'ms.assertion.validateChild': 'Additive check',
|
||||
'ms.assertion.openGlobal': 'Implement the Global Declaration',
|
||||
'ms.assertion.openGlobal': 'Enable global (environment) assertions',
|
||||
'ms.assertion.openGlobalTip':
|
||||
'It is enabled by default. If it is disabled, the global assertion will not be executed when running this interface.',
|
||||
'ms.assertion.closeGlobalTip':
|
||||
|
|
|
@ -22,7 +22,7 @@ export default {
|
|||
'ms.assertion.typeChecking': '类型校验',
|
||||
'ms.assertion.addChild': '添加子字段',
|
||||
'ms.assertion.validateChild': '添加子校验',
|
||||
'ms.assertion.openGlobal': '启用全局断言',
|
||||
'ms.assertion.openGlobal': '启用全局(环境)断言',
|
||||
'ms.assertion.openGlobalTip': '默认开启,关闭则运行该接口时不执行全局断言',
|
||||
'ms.assertion.closeGlobalTip': '默认关闭,关闭则运行该接口时不执行全局断言',
|
||||
'ms.assertion.expectedValueTitle': `特殊字符"$ ( ) * + . [ ]{ } \\^ |"需转义为"\\特殊字符",如"$"转义后为"\\$`,
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
@close="handleCancel"
|
||||
>
|
||||
<template #title> {{ t('caseManagement.featureCase.importingUseCase') }} </template>
|
||||
<div class="flex items-center">
|
||||
<div class="flex h-[40px] items-center">
|
||||
<div class="mr-3 flex h-8 w-8 items-center justify-center bg-[var(--color-text-n9)]">
|
||||
<MsIcon
|
||||
:type="props.validateType === 'Excel' ? 'icon-icon_file-excel_colorful1' : 'icon-icon_file-xmind_colorful1'"
|
||||
|
@ -29,9 +29,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue';
|
||||
import { Message } from '@arco-design/web-vue';
|
||||
|
||||
import { useI18n } from '@/hooks/useI18n';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
|
Loading…
Reference in New Issue