fix: fix missing page refresh parameters

This commit is contained in:
vben
2020-10-22 00:14:11 +08:00
parent 66acb21edd
commit 349d1978b1
11 changed files with 81 additions and 39 deletions

View File

@@ -37,7 +37,7 @@
.breadcrumb {
height: @header-height;
padding-right: 20px;
font-size: 14px;
font-size: 12px;
line-height: @header-height;
// line-height: 1;

View File

@@ -74,7 +74,7 @@
const getMergePropsRef = computed(
(): FormProps => {
return deepMerge(props, unref(propsRef));
return deepMerge(cloneDeep(props), unref(propsRef));
}
);
// 获取表单基本配置

View File

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