perf: 走查优化

This commit is contained in:
rd
2025-08-14 18:05:46 +08:00
parent e173b11750
commit 0619b83edc
2 changed files with 7 additions and 2 deletions

View File

@ -336,10 +336,9 @@ export default {
onInput={onChange}
placeholder="请输入作品描述"
size="large"
class="h-300px !w-784px"
class="textarea-box !w-784px"
show-word-limit
max-length={1000}
auto-size={{ minRows: 7, maxRows: 12 }}
/>
</FormItem>
{isVideo.value ? (

View File

@ -30,3 +30,9 @@
}
}
}
.textarea-box {
:deep(.arco-textarea) {
height: 140px;
max-height: 298px;
}
}