style(enterprise): 调整企业信息页面样式
- 修改企业名称更新计数为 1- 更新输入框未选中状态的样式 - 添加输入框选中状态的样式
This commit is contained in:
@ -43,7 +43,7 @@ const form = reactive({
|
|||||||
const enterpriseInfo = reactive({
|
const enterpriseInfo = reactive({
|
||||||
name: '123321',
|
name: '123321',
|
||||||
update_name_quota: 2,
|
update_name_quota: 2,
|
||||||
used_update_name_count: 2,
|
used_update_name_count: 1,
|
||||||
});
|
});
|
||||||
|
|
||||||
const columns = [
|
const columns = [
|
||||||
@ -111,7 +111,7 @@ async function handleOk() {
|
|||||||
}
|
}
|
||||||
:deep(.arco-input-wrapper) {
|
:deep(.arco-input-wrapper) {
|
||||||
background: white;
|
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-family: Alibaba PuHuiTi, serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -131,6 +131,9 @@ async function handleOk() {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
:deep(.arco-input-focus) {
|
||||||
|
border: 1px solid var(--Brand-Brand-6, rgba(109, 76, 254, 1));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.edit-button {
|
.edit-button {
|
||||||
margin: 12px 0;
|
margin: 12px 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user