12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- const title = 'tab表格'
- const setting = [
- {
- label: '维度',
-
- type: 'select',
-
- field: 'xField',
- optionField: 'xField',
-
- multiple: false,
-
- value: '',
-
- tabName: 'data'
- },
- {
- label: '指标',
-
- type: 'select',
-
- field: 'yField',
-
- optionField: 'yField',
-
- multiple: false,
- value: '',
- tabName: 'data'
- },
- {
- label: '用户名',
-
- type: 'input',
-
- field: 'customize_username',
- optionField: 'customize.username',
-
- multiple: false,
-
- value: '',
-
- tabName: 'custom'
- },
- {
- label: '手机号',
-
- type: 'input',
-
- field: 'customize_phone',
- optionField: 'customize.phone',
-
- multiple: false,
-
- value: '',
-
- tabName: 'custom'
- }
- ]
- const data = []
- const option = {
-
- data: data,
-
- xField: '',
- yField: '',
- seriesField: '',
-
- customize: {
- username: '张三',
- phone: '123456789'
- }
- }
- export default {
- title,
- option,
- setting
- }
|