From efefe1cfaaa27ae01dbc2c9037bb13db9a86c6ad Mon Sep 17 00:00:00 2001 From: rd <1344903914@qq.com> Date: Wed, 24 Sep 2025 17:35:08 +0800 Subject: [PATCH] =?UTF-8?q?style(manuscript):=20=E7=A6=81=E6=AD=A2?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E5=9F=9F=E8=B0=83=E6=95=B4=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在编辑表单的文本域中禁用用户调整大小功能 - 通过 SCSS 样式覆盖实现 `resize: none`- 作用于 `ant-input` 组件内部样式 --- .../manuscript/components/edit-form/style.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/material-center/components/finished-products/manuscript/components/edit-form/style.scss b/src/views/material-center/components/finished-products/manuscript/components/edit-form/style.scss index e3a2839..e56e550 100644 --- a/src/views/material-center/components/finished-products/manuscript/components/edit-form/style.scss +++ b/src/views/material-center/components/finished-products/manuscript/components/edit-form/style.scss @@ -33,4 +33,8 @@ .textarea-box { height: 140px; max-height: 298px; + + :deep(.ant-input) { + resize: none; + } }