1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import { commonConfig, displayOption } from 'data-room-ui/js/config'
- export const settingConfig = {
- legend: false,
- isGroup: true,
- data: [],
- label: {
-
- position: 'top',
-
- content: ''
- },
- seriesField: '',
- displayOption: {
- ...displayOption,
- dataAllocation: { enable: true },
- dataSourceType: { enable: false },
- params: { enable: false },
- metricField: {
-
- label: '指标',
- enable: false,
- multiple: false
- },
- dimensionField: {
-
- label: '表格列',
- enable: false,
- multiple: true
- }
- }
- }
- const customConfig = {
- type: 'button',
-
- title: '查询',
- root: {
- version: '2023071001'
- },
-
- customize: {
- bindComponents: [],
-
-
-
- backgroundColor: '#409EFF',
-
- fontColor: '#fff',
-
- fontSize: 14,
-
- icon: {
-
- name: '',
-
- position: ''
- },
- borderStyle: {
-
- borderColor: '#409EFF',
-
- borderWidth: 1,
-
- borderStyle: 'solid',
-
- borderRadius: 4
- }
- }
- }
- export const dataConfig = {
- ...commonConfig(customConfig)
- }
|