gasInspect.data.ts 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. import { getAllUserInfo } from './gasInspect.api';
  2. import { BasicColumn, FormSchema } from '/@/components/Table';
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: '序号',
  6. width: 60,
  7. align: 'center',
  8. customRender: ({ index }: { index: number }) => `${index + 1}`,
  9. },
  10. {
  11. title: '巡检卡ID',
  12. dataIndex: 'id',
  13. key: 'id',
  14. align: 'center',
  15. },
  16. {
  17. title: '地点',
  18. dataIndex: 'strInstallPos',
  19. key: 'strInstallPos',
  20. align: 'center',
  21. },
  22. {
  23. title: '巡检人',
  24. children: [
  25. {
  26. title: '早班',
  27. dataIndex: 'nameEarly',
  28. key: 'nameEarly',
  29. align: 'center',
  30. },
  31. {
  32. title: '中班',
  33. dataIndex: 'nameNoon',
  34. key: 'nameNoon',
  35. align: 'center',
  36. },
  37. {
  38. title: '晚班',
  39. dataIndex: 'nameNight',
  40. key: 'nameNight',
  41. align: 'center',
  42. },
  43. ],
  44. },
  45. {
  46. title: '是否巡检',
  47. children: [
  48. {
  49. title: '',
  50. dataIndex: 'insType',
  51. key: 'insType',
  52. align: 'center',
  53. },
  54. {
  55. title: '早班',
  56. dataIndex: 'morning',
  57. key: 'morning',
  58. align: 'center',
  59. },
  60. {
  61. title: '中班',
  62. dataIndex: 'afterNoon',
  63. key: 'afterNoon',
  64. align: 'center',
  65. },
  66. {
  67. title: '晚班',
  68. dataIndex: 'evening',
  69. key: 'eevening',
  70. align: 'center',
  71. },
  72. ],
  73. },
  74. {
  75. title: '操作',
  76. dataIndex: 'action',
  77. width: 250,
  78. align: 'center',
  79. slots: { customRender: 'action' },
  80. },
  81. ];
  82. export const columnsTask: BasicColumn[] = [
  83. {
  84. title: '序号',
  85. width: 60,
  86. align: 'center',
  87. customRender: ({ index }: { index: number }) => `${index + 1}`,
  88. },
  89. {
  90. title: '所属队别',
  91. dataIndex: 'name',
  92. key: 'name',
  93. align: 'center',
  94. },
  95. {
  96. title: '早班巡检',
  97. dataIndex: 'accountEarly',
  98. key: 'accountEarly',
  99. align: 'center',
  100. },
  101. {
  102. title: '中班巡检',
  103. dataIndex: 'accountNoon',
  104. key: 'accountNoon',
  105. align: 'center',
  106. },
  107. {
  108. title: '晚班巡检',
  109. dataIndex: 'accountNight',
  110. key: 'accountNight',
  111. align: 'center',
  112. },
  113. {
  114. title: '操作',
  115. dataIndex: 'action',
  116. width: 120,
  117. align: 'center',
  118. slots: { customRender: 'action' },
  119. },
  120. ];
  121. //区队管理列表列
  122. export const columnsTeam: BasicColumn[] = [
  123. {
  124. title: '序号',
  125. width: 60,
  126. align: 'center',
  127. customRender: ({ index }: { index: number }) => `${index + 1}`,
  128. },
  129. {
  130. title: 'ID',
  131. dataIndex: 'id',
  132. key: 'id',
  133. align: 'center',
  134. },
  135. {
  136. title: '区队',
  137. dataIndex: 'name',
  138. key: 'name',
  139. align: 'center',
  140. },
  141. {
  142. title: '操作',
  143. dataIndex: 'action',
  144. width: 180,
  145. align: 'center',
  146. slots: { customRender: 'action' },
  147. },
  148. ];
  149. //分页参数
  150. export const pagination = {
  151. current: 1, // 当前页码
  152. pageSize: 10, // 每页显示条数
  153. total: 0, // 总条目数,后端返回
  154. // showTotal: (total, range) => `${range[0]}-${range[1]} 条,总共 ${total} 条`, // 分页右下角显示信息
  155. showSizeChanger: true, // 是否可改变每页显示条数
  156. pageSizeOptions: ['10', '20', '50'], // 可选的每页显示条数
  157. };
  158. //区队管理分页参数
  159. export const paginationTeam = {
  160. current: 1, // 当前页码
  161. pageSize: 5, // 每页显示条数
  162. total: 0, // 总条目数,后端返回
  163. // showTotal: (total, range) => `${range[0]}-${range[1]} 条,总共 ${total} 条`, // 分页右下角显示信息
  164. showSizeChanger: true, // 是否可改变每页显示条数
  165. pageSizeOptions: ['5', '10', '20', '50'], // 可选的每页显示条数
  166. };
  167. // 任务表格
  168. export const taskColumns: BasicColumn[] = [
  169. {
  170. title: '序号',
  171. width: 60,
  172. align: 'center',
  173. customRender: ({ index }: { index: number }) => `${index + 1}`,
  174. },
  175. // {
  176. // title: 'ID',
  177. // dataIndex: 'id',
  178. // key: 'id',
  179. // align: 'center',
  180. // },
  181. {
  182. title: '任务名称',
  183. dataIndex: 'name',
  184. key: 'name',
  185. align: 'center',
  186. },
  187. // {
  188. // title: '早班巡检人账号',
  189. // dataIndex: 'accountEarly',
  190. // key: 'accountEarly',
  191. // align: 'center',
  192. // edit: true,
  193. // editComponent: 'ApiSelect',
  194. // editComponentProps: {
  195. // api: getAllUserInfo,
  196. // labelField: 'realname',
  197. // valueField: 'id',
  198. // },
  199. // },
  200. // {
  201. // title: '午班巡检人账号',
  202. // dataIndex: 'accountNoon',
  203. // key: 'accountNoon',
  204. // align: 'center',
  205. // edit: true,
  206. // editComponent: 'ApiSelect',
  207. // editComponentProps: {
  208. // api: getAllUserInfo,
  209. // labelField: 'realname',
  210. // valueField: 'id',
  211. // },
  212. // },
  213. // {
  214. // title: '晚班巡检人账号',
  215. // dataIndex: 'accountNight',
  216. // key: 'accountNight',
  217. // align: 'center',
  218. // edit: true,
  219. // editComponent: 'ApiSelect',
  220. // editComponentProps: {
  221. // api: getAllUserInfo,
  222. // labelField: 'realname',
  223. // valueField: 'id',
  224. // },
  225. // },
  226. {
  227. title: '任务班次',
  228. dataIndex: 'classType_dictText',
  229. key: 'classType_dictText',
  230. align: 'center',
  231. },
  232. {
  233. title: '总巡检数',
  234. dataIndex: 'totalCheckNum',
  235. key: 'totalCheckNum',
  236. align: 'center',
  237. },
  238. {
  239. title: '未巡检数',
  240. dataIndex: 'missCheckNum',
  241. key: 'missCheckNum',
  242. align: 'center',
  243. },
  244. {
  245. title: '创建人',
  246. dataIndex: 'createBy',
  247. key: 'createBy',
  248. align: 'center',
  249. },
  250. {
  251. title: '创建日期',
  252. dataIndex: 'createTime',
  253. key: 'createTime',
  254. align: 'center',
  255. },
  256. ];
  257. export const taskschemas: FormSchema[] = [
  258. {
  259. label: 'ID',
  260. field: 'id',
  261. component: 'Input',
  262. show: false,
  263. },
  264. {
  265. label: '任务名称',
  266. field: 'name',
  267. component: 'Input',
  268. },
  269. // {
  270. // label: '早班巡检人账号',
  271. // field: 'accountEarly',
  272. // component: 'ApiSelect',
  273. // componentProps: {
  274. // api: getAllUserInfo,
  275. // labelField: 'realname',
  276. // valueField: 'id',
  277. // },
  278. // },
  279. // {
  280. // label: '午班巡检人账号',
  281. // field: 'accountNoon',
  282. // component: 'ApiSelect',
  283. // componentProps: {
  284. // api: getAllUserInfo,
  285. // labelField: 'realname',
  286. // valueField: 'id',
  287. // },
  288. // },
  289. // {
  290. // label: '晚班巡检人账号',
  291. // field: 'accountNight',
  292. // component: 'ApiSelect',
  293. // componentProps: {
  294. // api: getAllUserInfo,
  295. // labelField: 'realname',
  296. // valueField: 'id',
  297. // },
  298. // },
  299. {
  300. label: '任务班次',
  301. field: 'classType',
  302. component: 'Input',
  303. },
  304. ];
  305. // 任务详细表格
  306. export const taskManageColumns: BasicColumn[] = [
  307. {
  308. title: '序号',
  309. width: 60,
  310. align: 'center',
  311. customRender: ({ index }: { index: number }) => `${index + 1}`,
  312. },
  313. {
  314. title: '巡检地址',
  315. dataIndex: 'deviceName',
  316. key: 'deviceName',
  317. align: 'center',
  318. width: 300,
  319. },
  320. {
  321. title: '巡检次数',
  322. dataIndex: 'checkNum',
  323. key: 'checkNum',
  324. align: 'center',
  325. },
  326. {
  327. title: '任务名称',
  328. dataIndex: 'taskName',
  329. key: 'taskName',
  330. align: 'center',
  331. },
  332. {
  333. title: '任务班次',
  334. dataIndex: 'classType_dictText',
  335. key: 'classType_dictText',
  336. align: 'center',
  337. },
  338. {
  339. title: '已关联当前任务',
  340. dataIndex: 'isSelect',
  341. key: 'isSelect',
  342. align: 'center',
  343. },
  344. {
  345. title: '已关联其它任务',
  346. dataIndex: 'isOtherSelect',
  347. key: 'isOtherSelect',
  348. align: 'center',
  349. },
  350. ];
  351. // 任务详细表格
  352. export const taskDetailsColumns: BasicColumn[] = [
  353. {
  354. title: '序号',
  355. width: 60,
  356. align: 'center',
  357. customRender: ({ index }: { index: number }) => `${index + 1}`,
  358. },
  359. {
  360. title: '巡检地址',
  361. dataIndex: 'deviceName',
  362. key: 'deviceName',
  363. align: 'center',
  364. width: 300,
  365. },
  366. {
  367. title: '巡检次数',
  368. dataIndex: 'checkNum',
  369. key: 'checkNum',
  370. align: 'center',
  371. },
  372. {
  373. title: '任务名称',
  374. dataIndex: 'taskName',
  375. key: 'taskName',
  376. align: 'center',
  377. },
  378. {
  379. title: '任务班次',
  380. dataIndex: 'classType_dictText',
  381. key: 'classType_dictText',
  382. align: 'center',
  383. },
  384. {
  385. title: '巡检状态',
  386. dataIndex: 'checkState',
  387. key: 'checkState',
  388. align: 'center',
  389. },
  390. ];