fix(描述输入): 字符限制

This commit is contained in:
baiqi 2024-11-19 13:55:09 +08:00
parent 8289daf30f
commit e962a73cd5
3 changed files with 2 additions and 3 deletions

View File

@ -72,6 +72,7 @@
v-model:model-value="element[model.field]"
class="flex-1"
type="textarea"
:max-length="model.maxLength"
:disabled="model.disabled"
@change="
() => {

View File

@ -55,7 +55,7 @@
v-model:model-value="quickInputValue"
:placeholder="props.placeholder"
:auto-size="{ minRows: 2 }"
:max-length="1000"
:max-length="props.maxLength"
/>
</a-modal>
</template>
@ -82,7 +82,6 @@
title: '',
disabled: false,
size: 'medium',
maxLength: 1000,
}
);
const emit = defineEmits<{

View File

@ -597,7 +597,6 @@
v-model:model-value="quickInputDescValue"
:placeholder="t('apiTestDebug.descPlaceholder')"
:auto-size="{ minRows: 2 }"
:max-length="1000"
></a-textarea>
</a-modal>
<DomainModal v-model:visible="hostVisible" :data="hostData" />