|
@@ -1,4 +1,4 @@
|
|
|
-import { ModuleVersionOptions, ModuleChartTypeOptions, ModulePositionOptions, ModuleSizeOptions } from './options';
|
|
|
+// import { ModuleVersionOptions, ModuleChartTypeOptions, ModulePositionOptions, ModuleSizeOptions } from './options';
|
|
|
import { BasicColumn } from '/@/components/Table';
|
|
|
import { FormSchema } from '/@/components/Table';
|
|
|
import _ from 'lodash-es';
|
|
@@ -133,7 +133,7 @@ export const formSchema: FormSchema[] = [
|
|
|
field: 'showStyle.size',
|
|
|
component: 'Select',
|
|
|
componentProps: {
|
|
|
- options: ModuleSizeOptions,
|
|
|
+ options: [],
|
|
|
},
|
|
|
},
|
|
|
{
|
|
@@ -141,7 +141,7 @@ export const formSchema: FormSchema[] = [
|
|
|
field: 'showStyle.version',
|
|
|
component: 'Select',
|
|
|
componentProps: {
|
|
|
- options: ModuleVersionOptions,
|
|
|
+ options: [],
|
|
|
},
|
|
|
},
|
|
|
{
|
|
@@ -149,7 +149,7 @@ export const formSchema: FormSchema[] = [
|
|
|
field: 'showStyle.position',
|
|
|
component: 'Select',
|
|
|
componentProps: {
|
|
|
- options: ModulePositionOptions,
|
|
|
+ options: [],
|
|
|
},
|
|
|
},
|
|
|
{
|
|
@@ -157,7 +157,7 @@ export const formSchema: FormSchema[] = [
|
|
|
field: 'showStyle.charttype',
|
|
|
component: 'Select',
|
|
|
componentProps: {
|
|
|
- options: ModuleChartTypeOptions,
|
|
|
+ options: [],
|
|
|
},
|
|
|
},
|
|
|
];
|