configuration.data.ts 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. // import { ModuleVersionOptions, ModuleChartTypeOptions, ModulePositionOptions, ModuleSizeOptions } from './options';
  2. import { ModulePositionOptions, ModulePresetOptions, ModuleVersionOptions } from './options';
  3. import { BasicColumn } from '/@/components/Table';
  4. import { FormSchema } from '/@/components/Table';
  5. export const columns: BasicColumn[] = [
  6. {
  7. title: '所属页面',
  8. dataIndex: 'pageType',
  9. },
  10. {
  11. title: '设备类型',
  12. dataIndex: 'deviceType',
  13. },
  14. {
  15. title: '模块标题',
  16. dataIndex: 'moduleName',
  17. },
  18. {
  19. title: '原始预设名称',
  20. dataIndex: 'desc',
  21. },
  22. {
  23. title: '模块尺寸',
  24. dataIndex: 'showStyle.size',
  25. },
  26. {
  27. title: '模块版本',
  28. dataIndex: 'showStyle.version',
  29. },
  30. {
  31. title: '模块定位',
  32. dataIndex: 'showStyle.position',
  33. },
  34. ];
  35. export const searchFormSchema: FormSchema[] = [
  36. {
  37. label: '设备类型',
  38. field: 'deviceType',
  39. component: 'Input',
  40. componentProps: {
  41. dictCode: 'devicekind',
  42. placeholder: '请选择设备类型',
  43. },
  44. colProps: { span: 6 },
  45. },
  46. {
  47. label: '所属页面',
  48. field: 'pageType',
  49. component: 'JDictSelectTag',
  50. componentProps: {
  51. dictCode: 'configurable_homepage',
  52. placeholder: '请选择所属页面',
  53. },
  54. colProps: { span: 6 },
  55. },
  56. ];
  57. export const formSchema: FormSchema[] = [
  58. {
  59. label: '',
  60. field: 'id',
  61. component: 'InputNumber',
  62. show: false,
  63. },
  64. {
  65. label: '',
  66. field: 'showStyle',
  67. component: 'InputNumber',
  68. show: false,
  69. },
  70. {
  71. label: '',
  72. field: 'moduleData',
  73. component: 'InputNumber',
  74. show: false,
  75. },
  76. {
  77. label: '模块标题',
  78. field: 'moduleName',
  79. component: 'Input',
  80. required: true,
  81. },
  82. // {
  83. // label: '设备类型',
  84. // field: 'deviceType',
  85. // component: 'JDictSelectTag',
  86. // required: true,
  87. // componentProps: {
  88. // dictCode: 'devicekind',
  89. // placeholder: '请选择设备类型',
  90. // },
  91. // },
  92. {
  93. label: '所属页面',
  94. field: 'pageType',
  95. component: 'JDictSelectTag',
  96. required: true,
  97. componentProps: {
  98. dictCode: 'configurable_homepage',
  99. placeholder: '请选择所属页面',
  100. },
  101. },
  102. {
  103. label: '原始预设名称',
  104. field: 'desc',
  105. component: 'Select',
  106. required: true,
  107. componentProps: {
  108. options: ModulePresetOptions,
  109. },
  110. },
  111. {
  112. label: '模块版本',
  113. field: 'showStyle.version',
  114. component: 'Select',
  115. required: true,
  116. componentProps: {
  117. options: ModuleVersionOptions,
  118. },
  119. },
  120. {
  121. label: '模块定位',
  122. field: 'showStyle.position',
  123. component: 'Select',
  124. required: true,
  125. componentProps: {
  126. options: ModulePositionOptions,
  127. },
  128. },
  129. {
  130. label: '允许预设配置覆盖',
  131. field: 'allowCover',
  132. component: 'Checkbox',
  133. },
  134. ];
  135. export const pageTypeFormSchema: FormSchema[] = [
  136. {
  137. label: '所属页面',
  138. field: 'pageType',
  139. component: 'JDictSelectTag',
  140. required: true,
  141. componentProps: {
  142. dictCode: 'configurable_homepage',
  143. placeholder: '请选择所属页面',
  144. },
  145. },
  146. {
  147. label: '模块版本',
  148. field: 'showStyle.version',
  149. component: 'Select',
  150. required: true,
  151. componentProps: {
  152. options: ModuleVersionOptions,
  153. },
  154. },
  155. ];