12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import { commonConfig } from 'data-room-ui/js/config'
- export const settingConfig = {
- displayOption: {
- dataAllocation: {
-
- enable: false
- }
- }
- }
- const customConfig = {
- type: 'input',
- root: {
- version: '2023071001'
- },
-
- customize: {
- value: '',
-
- showTitle: true,
-
- title: '输入框',
- titleStyle: {
-
- fontSize: 14,
-
- color: '#fff',
-
- marginRight: 10
- },
- inputStyle: {
-
- fontSize: 20,
-
- color: '#fff',
-
- paddingLeft: 10
- },
-
- icon: {
-
- name: '',
-
- position: ''
- },
- placeholderStyle: {
-
- placeholder: '请输入',
-
- placeholderColor: 'red'
- },
-
- borderStyle: {
-
- borderColor: '#dcdfe6',
-
- borderWidth: 1,
-
- borderStyle: 'solid',
-
- borderRadius: 4
- },
- backgroundStyle: {
-
- backgroundColor: '#151a26'
- }
- }
- }
- export const dataConfig = {
- ...commonConfig(customConfig)
- }
|