point.data.ts 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import { BasicColumn } from '/@/components/Table';
  2. import { deviceList, deviceId, getDeviceId } from './point.api';
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: '值名称',
  6. dataIndex: 'valuename',
  7. width: 100,
  8. },
  9. {
  10. title: '值code',
  11. width: 100,
  12. dataIndex: 'valuecode',
  13. },
  14. {
  15. title: '关联设备类型',
  16. dataIndex: 'link_devicetype',
  17. editRow: true,
  18. width: 100,
  19. },
  20. {
  21. title: '关联设备',
  22. dataIndex: 'link_id',
  23. editRow: true,
  24. width: 100,
  25. },
  26. {
  27. title: '关联字段',
  28. width: 180,
  29. editRow: true,
  30. dataIndex: 'link_code',
  31. },
  32. ];
  33. export const deviceColumns: BasicColumn[] = [
  34. {
  35. title: '名称',
  36. dataIndex: 'deviceName',
  37. align: 'center',
  38. width: 120,
  39. },
  40. {
  41. title: '安装位置',
  42. dataIndex: 'devicePos',
  43. align: 'center',
  44. width: 100,
  45. },
  46. {
  47. title: '设备类型',
  48. dataIndex: 'deviceType',
  49. align: 'center',
  50. width: 100,
  51. },
  52. {
  53. title: '所属分站',
  54. width: 150,
  55. align: 'center',
  56. dataIndex: 'subStationName',
  57. },
  58. ];
  59. export const workFaceColumns: BasicColumn[] = [
  60. {
  61. title: '安装位置',
  62. dataIndex: 'valuename',
  63. width: 100,
  64. },
  65. {
  66. title: '序号',
  67. width: 100,
  68. dataIndex: 'valuecode',
  69. },
  70. ];