mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 19:29:04 +08:00
fix: fix missing page refresh parameters
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
.breadcrumb {
|
||||
height: @header-height;
|
||||
padding-right: 20px;
|
||||
font-size: 14px;
|
||||
font-size: 12px;
|
||||
line-height: @header-height;
|
||||
// line-height: 1;
|
||||
|
||||
|
@@ -74,7 +74,7 @@
|
||||
|
||||
const getMergePropsRef = computed(
|
||||
(): FormProps => {
|
||||
return deepMerge(props, unref(propsRef));
|
||||
return deepMerge(cloneDeep(props), unref(propsRef));
|
||||
}
|
||||
);
|
||||
// 获取表单基本配置
|
||||
|
@@ -118,7 +118,7 @@
|
||||
.ant-menu-submenu-open,
|
||||
.ant-menu-item-selected,
|
||||
.ant-menu-submenu-selected {
|
||||
color: @white !important;
|
||||
color: @primary-color !important;
|
||||
border-bottom: 3px solid @primary-color;
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@
|
||||
.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
|
||||
.ant-menu-submenu-active,
|
||||
.ant-menu-submenu-title:hover {
|
||||
color: @white !important;
|
||||
color: @primary-color !important;
|
||||
border-bottom: 3px solid @primary-color;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user