EnterpriseInfo.data.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import { BasicColumn } from '/@/components/Table';
  2. //列表数据
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: '序号',
  6. align: 'center',
  7. dataIndex: 'index',
  8. width: 60,
  9. customRender: ({ index }) => index + 1,
  10. },
  11. {
  12. title: '统一信用代码',
  13. align: 'center',
  14. dataIndex: 'unifiedCreditCode',
  15. width: 170,
  16. },
  17. {
  18. title: '单位名称',
  19. align: 'center',
  20. dataIndex: 'companyName',
  21. width: 200,
  22. },
  23. {
  24. title: '单位类型',
  25. align: 'center',
  26. dataIndex: 'companyType',
  27. width: 120,
  28. },
  29. {
  30. title: '所属行业',
  31. align: 'center',
  32. dataIndex: 'industry',
  33. width: 120,
  34. },
  35. {
  36. title: '注册地址',
  37. align: 'center',
  38. dataIndex: 'regAddrDistrict',
  39. width: 150,
  40. },
  41. {
  42. title: '经营地址',
  43. align: 'center',
  44. dataIndex: 'officeAddress',
  45. width: 200,
  46. },
  47. {
  48. title: '企业规模',
  49. align: 'center',
  50. dataIndex: 'staffSize',
  51. width: 100,
  52. },
  53. {
  54. title: '是否重点企业',
  55. align: 'center',
  56. dataIndex: 'isKeyEnterprise',
  57. width: 120,
  58. },
  59. {
  60. title: '单位标签',
  61. align: 'center',
  62. dataIndex: 'tagNames',
  63. width: 200,
  64. },
  65. {
  66. title: '经营状态',
  67. align: 'center',
  68. dataIndex: 'businessStatus',
  69. width: 100,
  70. },
  71. {
  72. title: '当前岗位数',
  73. align: 'center',
  74. dataIndex: 'postCount',
  75. width: 100,
  76. },
  77. {
  78. title: '数据来源',
  79. align: 'center',
  80. dataIndex: 'dataSource',
  81. width: 100,
  82. },
  83. ];
  84. // 高级查询数据
  85. export const superQuerySchema = {
  86. companyName: { title: '单位名称', order: 0, view: 'text', type: 'string' },
  87. unifiedCreditCode: { title: '统一社会信用代码', order: 1, view: 'text', type: 'string' },
  88. orgCode: { title: '组织机构代码', order: 2, view: 'text', type: 'string' },
  89. businessStatus: { title: '经营状态', order: 3, view: 'text', type: 'string' },
  90. registeredCapital: { title: '注册资本', order: 4, view: 'text', type: 'string' },
  91. companyType: { title: '单位类型', order: 5, view: 'text', type: 'string' },
  92. economyType: { title: '经济类型', order: 6, view: 'text', type: 'string' },
  93. industry: { title: '所属行业', order: 7, view: 'text', type: 'string' },
  94. industryField: { title: '行业领域', order: 8, view: 'text', type: 'string' },
  95. industryAdminDept: { title: '行业主管部门', order: 9, view: 'text', type: 'string' },
  96. industryTag: { title: '产业标签', order: 10, view: 'text', type: 'string' },
  97. companyPropertyTag: { title: '单位属性标签', order: 11, view: 'text', type: 'string' },
  98. provinceOrCity: { title: '省属或所属地市', order: 12, view: 'text', type: 'string' },
  99. companyAttribute: { title: '单位属性', order: 13, view: 'text', type: 'string' },
  100. isListedCompany: { title: '是否上市公司', order: 14, view: 'text', type: 'string' },
  101. isHeadEnterprise: { title: '是否为头部企业', order: 15, view: 'text', type: 'string' },
  102. isKeyEnterprise: { title: '是否为重点企业', order: 16, view: 'text', type: 'string' },
  103. isKeyInstitution: { title: '是否为重点事业单位', order: 17, view: 'text', type: 'string' },
  104. isStrategicIndustry: { title: '是否属于20个战略性产业集群', order: 18, view: 'text', type: 'string' },
  105. dataSource: { title: '数据来源', order: 19, view: 'text', type: 'string' },
  106. tagNames: { title: '单位标签', order: 20, view: 'text', type: 'string' },
  107. staffSize: { title: '人员规模', order: 21, view: 'text', type: 'string' },
  108. contactPerson: { title: '联系人', order: 22, view: 'text', type: 'string' },
  109. contactPhone: { title: '联系方式', order: 23, view: 'text', type: 'string' },
  110. email: { title: '电子邮箱', order: 24, view: 'text', type: 'string' },
  111. };