mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-24 02:16:10 +08:00
fix: 解决多组数据会同步修改的bug
This commit is contained in:
parent
9d04515977
commit
eee2611c4e
@ -1,4 +1,4 @@
|
|||||||
import { publicConfig } from '@/packages/public'
|
import { publicConfig } from '@/packages/public'
|
||||||
import { CreateComponentType } from '@/packages/index.d'
|
import { CreateComponentType } from '@/packages/index.d'
|
||||||
import { Border01Config } from './index'
|
import { Border01Config } from './index'
|
||||||
import cloneDeep from 'lodash/cloneDeep'
|
import cloneDeep from 'lodash/cloneDeep'
|
||||||
@ -12,5 +12,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border01Config.key
|
public key = Border01Config.key
|
||||||
public chartConfig = cloneDeep(Border01Config)
|
public chartConfig = cloneDeep(Border01Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -12,5 +12,5 @@ export default class Config extends publicConfig
|
|||||||
implements CreateComponentType {
|
implements CreateComponentType {
|
||||||
public key = Border02Config.key
|
public key = Border02Config.key
|
||||||
public chartConfig = cloneDeep(Border02Config)
|
public chartConfig = cloneDeep(Border02Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border03Config.key
|
public key = Border03Config.key
|
||||||
public chartConfig = cloneDeep(Border03Config)
|
public chartConfig = cloneDeep(Border03Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -16,5 +16,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border04Config.key
|
public key = Border04Config.key
|
||||||
public chartConfig = cloneDeep(Border04Config)
|
public chartConfig = cloneDeep(Border04Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border05Config.key
|
public key = Border05Config.key
|
||||||
public chartConfig = cloneDeep(Border05Config)
|
public chartConfig = cloneDeep(Border05Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border06Config.key
|
public key = Border06Config.key
|
||||||
public chartConfig = cloneDeep(Border06Config)
|
public chartConfig = cloneDeep(Border06Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border07Config.key
|
public key = Border07Config.key
|
||||||
public chartConfig = cloneDeep(Border07Config)
|
public chartConfig = cloneDeep(Border07Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -13,5 +13,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border08Config.key
|
public key = Border08Config.key
|
||||||
public chartConfig = cloneDeep(Border08Config)
|
public chartConfig = cloneDeep(Border08Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border09Config.key
|
public key = Border09Config.key
|
||||||
public chartConfig = cloneDeep(Border09Config)
|
public chartConfig = cloneDeep(Border09Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border10Config.key
|
public key = Border10Config.key
|
||||||
public chartConfig = cloneDeep(Border10Config)
|
public chartConfig = cloneDeep(Border10Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border11Config.key
|
public key = Border11Config.key
|
||||||
public chartConfig = cloneDeep(Border11Config)
|
public chartConfig = cloneDeep(Border11Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border12Config.key
|
public key = Border12Config.key
|
||||||
public chartConfig = cloneDeep(Border12Config)
|
public chartConfig = cloneDeep(Border12Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Border13Config.key
|
public key = Border13Config.key
|
||||||
public chartConfig = cloneDeep(Border13Config)
|
public chartConfig = cloneDeep(Border13Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -13,5 +13,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Decorates01Config.key
|
public key = Decorates01Config.key
|
||||||
public chartConfig = cloneDeep(Decorates01Config)
|
public chartConfig = cloneDeep(Decorates01Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -12,5 +12,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Decorates02Config.key
|
public key = Decorates02Config.key
|
||||||
public chartConfig = cloneDeep(Decorates02Config)
|
public chartConfig = cloneDeep(Decorates02Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -13,5 +13,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Decorates03Config.key
|
public key = Decorates03Config.key
|
||||||
public chartConfig = cloneDeep(Decorates03Config)
|
public chartConfig = cloneDeep(Decorates03Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -12,5 +12,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Decorates04Config.key
|
public key = Decorates04Config.key
|
||||||
public chartConfig = cloneDeep(Decorates04Config)
|
public chartConfig = cloneDeep(Decorates04Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = Decorates05Config.key
|
public key = Decorates05Config.key
|
||||||
public chartConfig = cloneDeep(Decorates05Config)
|
public chartConfig = cloneDeep(Decorates05Config)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -19,5 +19,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = NumberConfig.key
|
public key = NumberConfig.key
|
||||||
public chartConfig = cloneDeep(NumberConfig)
|
public chartConfig = cloneDeep(NumberConfig)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
@ -26,5 +26,5 @@ export const option = {
|
|||||||
export default class Config extends publicConfig implements CreateComponentType {
|
export default class Config extends publicConfig implements CreateComponentType {
|
||||||
public key = TableListConfig.key
|
public key = TableListConfig.key
|
||||||
public chartConfig = cloneDeep(TableListConfig)
|
public chartConfig = cloneDeep(TableListConfig)
|
||||||
public option = option
|
public option = cloneDeep(option)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user