From 33d1be159dee6e6d8b1438f66379475e98e29c00 Mon Sep 17 00:00:00 2001 From: dkp Date: Thu, 19 Jun 2025 09:36:41 +0800 Subject: [PATCH] =?UTF-8?q?style(enterprise):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E4=BC=81=E4=B8=9A=E4=BF=A1=E6=81=AF=E9=A1=B5=E9=9D=A2=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改企业名称更新计数为 1- 更新输入框未选中状态的样式 - 添加输入框选中状态的样式 --- src/views/components/management/enterprise/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/components/management/enterprise/index.vue b/src/views/components/management/enterprise/index.vue index e59a3dc..7aa5c5c 100644 --- a/src/views/components/management/enterprise/index.vue +++ b/src/views/components/management/enterprise/index.vue @@ -43,7 +43,7 @@ const form = reactive({ const enterpriseInfo = reactive({ name: '123321', update_name_quota: 2, - used_update_name_count: 2, + used_update_name_count: 1, }); const columns = [ @@ -111,7 +111,7 @@ async function handleOk() { } :deep(.arco-input-wrapper) { background: white; - border: 1px solid var(--Brand-Brand-6, rgba(109, 76, 254, 1)); + border: 1px solid var(--BG-400, rgba(215, 215, 217, 1)); font-family: Alibaba PuHuiTi, serif; font-weight: 400; font-size: 14px; @@ -131,6 +131,9 @@ async function handleOk() { font-size: 14px; } } + :deep(.arco-input-focus) { + border: 1px solid var(--Brand-Brand-6, rgba(109, 76, 254, 1)); + } } .edit-button { margin: 12px 0;