substation.data.ts 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. import { BasicColumn } from '/@/components/Table';
  2. import { FormSchema } from '/@/components/Table';
  3. import { rules } from '/@/utils/helper/validator';
  4. import { render } from '/@/utils/common/renderUtils';
  5. export const columns: BasicColumn[] = [
  6. {
  7. title: '名称',
  8. dataIndex: 'strname',
  9. width: 120,
  10. },
  11. {
  12. title: '安装位置',
  13. dataIndex: 'strinstallpos',
  14. width: 100,
  15. },
  16. {
  17. title: '读取数据方式',
  18. dataIndex: 'strtype',
  19. width: 100,
  20. },
  21. {
  22. title: '分站IP地址',
  23. dataIndex: 'strip',
  24. width: 100,
  25. },
  26. {
  27. title: '链接状态',
  28. dataIndex: 'linkstatus',
  29. width: 100,
  30. },
  31. {
  32. title: '备注',
  33. width: 150,
  34. dataIndex: 'strremark',
  35. },
  36. ];
  37. export const recycleColumns: BasicColumn[] = [
  38. {
  39. title: '名称',
  40. dataIndex: 'strname',
  41. width: 100,
  42. },
  43. {
  44. title: '安装位置',
  45. dataIndex: 'strinstallpos',
  46. width: 100,
  47. },
  48. {
  49. title: '链接状态',
  50. dataIndex: 'linkstatus',
  51. width: 80,
  52. customRender: render.renderAvatar,
  53. },
  54. ];
  55. export const searchFormSchema: FormSchema[] = [
  56. {
  57. label: '名称',
  58. field: 'strname',
  59. component: 'Input',
  60. colProps: { span: 6 },
  61. },
  62. {
  63. label: '安装位置',
  64. field: 'strinstallpos',
  65. component: 'Input',
  66. colProps: { span: 6 },
  67. },
  68. {
  69. label: '链接状态',
  70. field: 'linkstatus',
  71. component: 'JDictSelectTag',
  72. componentProps: {
  73. dictCode: 'user_status',
  74. placeholder: '请选择读写类型',
  75. stringToNumber: true,
  76. },
  77. colProps: { span: 6 },
  78. },
  79. ];
  80. export const formSchema: FormSchema[] = [
  81. {
  82. label: '',
  83. field: 'id',
  84. component: 'Input',
  85. show: false,
  86. },
  87. {
  88. label: '名称',
  89. field: 'strname',
  90. component: 'Input',
  91. },
  92. {
  93. label: '安装位置',
  94. field: 'strinstallpos',
  95. component: 'Input',
  96. },
  97. {
  98. label: '读取数据方式',
  99. field: 'strtype',
  100. component: 'JDictSelectTag',
  101. // componentProps: {
  102. // dictCode: 'getdatatype',
  103. // placeholder: '请选择分站用途',
  104. // },
  105. componentProps: ({ formModel, formActionType, schema }) => {
  106. return {
  107. dictCode: 'getdatatype',
  108. placeholder: '请选择分站用途',
  109. onChange: (e: any) => {
  110. const { updateSchema } = formActionType;
  111. if (e == 'plc') {
  112. updateSchema({
  113. field: 'plcType',
  114. show: true,
  115. });
  116. } else {
  117. updateSchema({
  118. field: 'plcType',
  119. show: false,
  120. });
  121. }
  122. },
  123. };
  124. },
  125. },
  126. {
  127. label: 'PLC类型',
  128. field: 'plcType',
  129. component: 'JDictSelectTag',
  130. show: true,
  131. componentProps: {
  132. dictCode: 'plcType',
  133. placeholder: '请选择PLC类型',
  134. },
  135. },
  136. {
  137. label: '分站用途',
  138. field: 'nkj980use',
  139. component: 'JDictSelectTag',
  140. componentProps: {
  141. dictCode: 'nkj980use',
  142. placeholder: '请选择分站用途',
  143. stringToNumber: true,
  144. },
  145. },
  146. {
  147. label: '分站IP地址',
  148. field: 'strip',
  149. component: 'Input',
  150. },
  151. {
  152. label: '分站端口',
  153. field: 'nport',
  154. component: 'InputNumber',
  155. },
  156. // {
  157. // label: '链接状态',
  158. // field: 'linkstatus',
  159. // component: 'JDictSelectTag',
  160. // componentProps: {
  161. // dictCode: 'linkstatus',
  162. // placeholder: '请选择链接状态',
  163. // stringToNumber: true,
  164. // },
  165. // },
  166. {
  167. label: '备注',
  168. field: 'strremark',
  169. component: 'InputTextArea',
  170. },
  171. ];