fix: download query bug
This commit is contained in:
@@ -8,7 +8,7 @@ export const copyValueToTarget = (target: any, source: any) => {
|
||||
// 删除多余属性
|
||||
Object.keys(newObj).forEach((key) => {
|
||||
// 如果不是target中的属性则删除
|
||||
if (Object.keys(target).indexOf(key) === -1) {
|
||||
if (!Object.keys(target).includes(key)) {
|
||||
delete newObj[key];
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
export * from './bean';
|
||||
export * from './constants';
|
||||
export * from './dict';
|
||||
export * from './formatTime';
|
||||
@@ -5,4 +6,3 @@ export * from './formCreate';
|
||||
export * from './rangePickerProps';
|
||||
export * from './routerHelper';
|
||||
export * from './validator';
|
||||
export * from './bean';
|
||||
|
||||
Reference in New Issue
Block a user