setting.data.ts 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import { BasicColumn, FormSchema } from '/@/components/Table';
  2. import { ThemeEnum } from '/@/enums/appEnum';
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: '系统标题',
  6. width: 150,
  7. dataIndex: 'systemTitle',
  8. },
  9. {
  10. title: '系统首页',
  11. width: 150,
  12. dataIndex: 'systemHome',
  13. helpMessage: ['系统首页对应的url', '不填此项则首页为默认首页'],
  14. },
  15. {
  16. title: 'logo',
  17. dataIndex: 'logoIcon',
  18. helpMessage: ['这是简单模式的图片列表', '只会显示一张在表格中', '但点击可预览多张图片'],
  19. width: 140,
  20. },
  21. {
  22. title: '系统风格',
  23. dataIndex: 'defaultTheme',
  24. width: 140,
  25. },
  26. {
  27. title: '登录背景图',
  28. dataIndex: 'loginBack',
  29. helpMessage: ['这是简单模式的图片列表', '只会显示一张在表格中', '但点击可预览多张图片'],
  30. width: 140,
  31. },
  32. {
  33. title: '操作',
  34. width: 150,
  35. dataIndex: 'operation',
  36. },
  37. ];
  38. export const formSchema: FormSchema[] = [
  39. {
  40. field: 'id',
  41. label: 'id',
  42. component: 'Input',
  43. show: false,
  44. },
  45. {
  46. field: 'systemTitle',
  47. label: '系统标题',
  48. required: true,
  49. component: 'Input',
  50. },
  51. {
  52. field: 'systemHome',
  53. label: '系统首页',
  54. component: 'Input',
  55. },
  56. {
  57. field: 'logoIcon',
  58. label: 'logo',
  59. component: 'JImageUpload',
  60. componentProps: {
  61. fileMax: 1,
  62. },
  63. },
  64. {
  65. field: 'defaultTheme',
  66. label: '系统风格',
  67. component: 'RadioGroup',
  68. defaultValue: 1,
  69. required: true,
  70. componentProps: {
  71. options: [
  72. {
  73. label: '6.0',
  74. value: 'styleOne',
  75. },
  76. {
  77. label: '5.5',
  78. value: 'styleTwo',
  79. },
  80. // {
  81. // label: '默认(开发中)',
  82. // value: ThemeEnum.VENT1,
  83. // },
  84. {
  85. label: '明亮(开发中)',
  86. value: ThemeEnum.LIGHT,
  87. },
  88. {
  89. label: '深色(开发中)',
  90. value: ThemeEnum.DARK,
  91. },
  92. {
  93. label: '深蓝(开发中)',
  94. value: ThemeEnum.DEEPBLUE,
  95. },
  96. ],
  97. },
  98. },
  99. {
  100. field: 'loginBack',
  101. label: '登录背景图',
  102. component: 'JImageUpload',
  103. componentProps: {
  104. fileMax: 1,
  105. },
  106. },
  107. {
  108. field: 'dataType',
  109. label: '矿井数据来源',
  110. component: 'RadioGroup',
  111. defaultValue: 1,
  112. componentProps: {
  113. options: [
  114. {
  115. label: '报表',
  116. value: 'report',
  117. },
  118. {
  119. label: '监测值',
  120. value: 'monitor',
  121. },
  122. {
  123. label: '两种切换',
  124. value: 'all',
  125. },
  126. ],
  127. },
  128. },
  129. {
  130. field: 'voiceAlarmType',
  131. label: '语音报警协议类型',
  132. component: 'Input',
  133. },
  134. {
  135. field: 'voiceAlarmAddress',
  136. label: '语音报警服务地址',
  137. component: 'Input',
  138. },
  139. {
  140. field: 'airDensity',
  141. label: '矿井空气密度',
  142. component: 'Input',
  143. },
  144. ];