style(enterprise): 调整企业信息页面样式

- 修改企业名称更新计数为 1- 更新输入框未选中状态的样式
- 添加输入框选中状态的样式
This commit is contained in:
2025-06-19 09:36:41 +08:00
parent d19861d976
commit 33d1be159d

View File

@ -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;