perf: 支持10000以上最多引用字符数(#603)(#628)

This commit is contained in:
wangdan-fit2cloud 2024-06-13 11:41:22 +08:00
parent c3391bca34
commit d4406e730a
2 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@
placeholder="请输入" placeholder="请输入"
:autosize="{ minRows: 1, maxRows: 4 }" :autosize="{ minRows: 1, maxRows: 4 }"
type="textarea" type="textarea"
:maxlength="1024" :maxlength="100000"
@keydown.enter="sendChatHandle($event)" @keydown.enter="sendChatHandle($event)"
/> />
<div class="operate"> <div class="operate">

View File

@ -83,7 +83,7 @@
show-input show-input
:show-input-controls="false" :show-input-controls="false"
:min="500" :min="500"
:max="10000" :max="100000"
class="custom-slider" class="custom-slider"
/> />
</el-form-item> </el-form-item>