projecCountConfig.jsx 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. //高新
  2. const highTechColumns = [
  3. {
  4. title: "序号",
  5. dataIndex: "key",
  6. key: "key",
  7. },
  8. {
  9. title: "派单省份",
  10. dataIndex: "provinceName",
  11. key: "provinceName",
  12. },
  13. {
  14. title: "负责部门",
  15. dataIndex: "thchDepName",
  16. key: "thchDepName",
  17. },
  18. {
  19. title: "项目类别",
  20. dataIndex: "projectStatus",
  21. key: "projectStatus",
  22. },
  23. {
  24. title: "派单数(个)",
  25. dataIndex: "distributeCount",
  26. key: "distributeCount",
  27. },
  28. {
  29. title: "库存数(个)",
  30. dataIndex: "stockCount",
  31. key: "stockCount",
  32. },
  33. {
  34. title: "完成数",
  35. dataIndex: "completeCount",
  36. key: "completeCount",
  37. },
  38. {
  39. title: "立项数",
  40. dataIndex: "setUpCount",
  41. key: "setUpCount",
  42. },
  43. {
  44. title: "抽查数",
  45. dataIndex: "spotCheckCount",
  46. key: "spotCheckCount",
  47. },
  48. {
  49. title: "未通过数",
  50. dataIndex: "failedCount",
  51. key: "failedCount",
  52. },
  53. {
  54. title: "签单额(万元)",
  55. dataIndex: "amountCount",
  56. key: "amountCount",
  57. },
  58. {
  59. title: "成本(万元)",
  60. dataIndex: "costAmount",
  61. key: "costAmount",
  62. },
  63. {
  64. title: "利润(万元)",
  65. dataIndex: "profit",
  66. key: "profit",
  67. },
  68. ];
  69. //发明专利
  70. const invention = [
  71. {
  72. title: "序号",
  73. dataIndex: "key",
  74. key: "key",
  75. },
  76. {
  77. title: "派单省份",
  78. dataIndex: "provinceName",
  79. key: "provinceName",
  80. },
  81. // {
  82. // title: "订单部门",
  83. // dataIndex: "orderNo",
  84. // key: "orderNo",
  85. // },
  86. {
  87. title: "负责部门",
  88. dataIndex: "thchDepName",
  89. key: "thchDepName",
  90. },
  91. {
  92. title: "项目类别",
  93. dataIndex: "projectStatus",
  94. key: "projectStatus",
  95. },
  96. {
  97. title: "派单数(个)",
  98. dataIndex: "distributeCount",
  99. key: "distributeCount",
  100. },
  101. {
  102. title: "库存数(个)",
  103. dataIndex: "stockCount",
  104. key: "stockCount",
  105. },
  106. {
  107. title: "受理数(个)",
  108. dataIndex: "acceptCount",
  109. key: "acceptCount",
  110. },
  111. {
  112. title: "完结总数",
  113. dataIndex: "completeCount",
  114. key: "completeCount",
  115. },
  116. {
  117. title: "授权数",
  118. dataIndex: "authorizeCount",
  119. key: "authorizeCount",
  120. },
  121. {
  122. title: "驳回数",
  123. dataIndex: "rejectCount",
  124. key: "rejectCount",
  125. },
  126. {
  127. title: "签单额(万元)",
  128. dataIndex: "amountCount",
  129. key: "amountCount",
  130. },
  131. {
  132. title: "成本(万元)",
  133. dataIndex: "costAmount",
  134. key: "costAmount",
  135. },
  136. {
  137. title: "利润(万元)",
  138. dataIndex: "profit",
  139. key: "profit",
  140. },
  141. ];
  142. //实用新型
  143. const utilityModel = [
  144. {
  145. title: "序号",
  146. dataIndex: "key",
  147. key: "key",
  148. },
  149. {
  150. title: "派单省份",
  151. dataIndex: "provinceName",
  152. key: "provinceName",
  153. },
  154. {
  155. title: "负责部门",
  156. dataIndex: "thchDepName",
  157. key: "thchDepName",
  158. },
  159. {
  160. title: "项目类别",
  161. dataIndex: "projectStatus",
  162. key: "projectStatus",
  163. },
  164. {
  165. title: "派单数(个)",
  166. dataIndex: "distributeCount",
  167. key: "distributeCount",
  168. },
  169. {
  170. title: "库存数(个)",
  171. dataIndex: "stockCount",
  172. key: "stockCount",
  173. },
  174. {
  175. title: "受理数(个)",
  176. dataIndex: "acceptCount",
  177. key: "acceptCount",
  178. },
  179. {
  180. title: "完结总数",
  181. dataIndex: "completeCount",
  182. key: "completeCount",
  183. },
  184. {
  185. title: "授权数",
  186. dataIndex: "authorizeCount",
  187. key: "authorizeCount",
  188. },
  189. {
  190. title: "驳回数",
  191. dataIndex: "rejectCount",
  192. key: "rejectCount",
  193. },
  194. {
  195. title: "签单额(万元)",
  196. dataIndex: "amountCount",
  197. key: "amountCount",
  198. },
  199. {
  200. title: "成本(万元)",
  201. dataIndex: "costAmount",
  202. key: "costAmount",
  203. },
  204. {
  205. title: "利润(万元)",
  206. dataIndex: "profit",
  207. key: "profit",
  208. },
  209. ];
  210. //软著
  211. const softWriting = [
  212. {
  213. title: "序号",
  214. dataIndex: "key",
  215. key: "key",
  216. },
  217. {
  218. title: "派单省份",
  219. dataIndex: "provinceName",
  220. key: "provinceName",
  221. },
  222. {
  223. title: "负责部门",
  224. dataIndex: "thchDepName",
  225. key: "thchDepName",
  226. },
  227. {
  228. title: "项目类别",
  229. dataIndex: "projectStatus",
  230. key: "projectStatus",
  231. },
  232. {
  233. title: "派单数(个)",
  234. dataIndex: "distributeCount",
  235. key: "distributeCount",
  236. },
  237. {
  238. title: "库存数(个)",
  239. dataIndex: "stockCount",
  240. key: "stockCount",
  241. },
  242. {
  243. title: "下证数(个)",
  244. dataIndex: "certificatesCount",
  245. key: "certificatesCount",
  246. },
  247. {
  248. title: "签单额(万元)",
  249. dataIndex: "amountCount",
  250. key: "amountCount",
  251. },
  252. {
  253. title: "成本(万元)",
  254. dataIndex: "costAmount",
  255. key: "costAmount",
  256. },
  257. {
  258. title: "利润(万元)",
  259. dataIndex: "profit",
  260. key: "profit",
  261. },
  262. ];
  263. //商标
  264. const otherTrademarks = [
  265. {
  266. title: "序号",
  267. dataIndex: "key",
  268. key: "key",
  269. },
  270. {
  271. title: "派单省份",
  272. dataIndex: "provinceName",
  273. key: "provinceName",
  274. },
  275. {
  276. title: "负责部门",
  277. dataIndex: "thchDepName",
  278. key: "thchDepName",
  279. },
  280. {
  281. title: "项目类别",
  282. dataIndex: "projectStatus",
  283. key: "projectStatus",
  284. },
  285. {
  286. title: "派单数(个)",
  287. dataIndex: "distributeCount",
  288. key: "distributeCount",
  289. },
  290. {
  291. title: "库存数(个)",
  292. dataIndex: "stockCount",
  293. key: "stockCount",
  294. },
  295. {
  296. title: "申请数(个)",
  297. dataIndex: "applyCount",
  298. key: "applyCount",
  299. },
  300. {
  301. title: "驳回数(个)",
  302. dataIndex: "rejectCount",
  303. key: "rejectCount",
  304. },
  305. {
  306. title: "下证数(个)",
  307. dataIndex: "certificatesCount",
  308. key: "certificatesCount",
  309. },
  310. {
  311. title: "签单额(万元)",
  312. dataIndex: "amountCount",
  313. key: "amountCount",
  314. },
  315. {
  316. title: "成本(万元)",
  317. dataIndex: "costAmount",
  318. key: "costAmount",
  319. },
  320. {
  321. title: "利润(万元)",
  322. dataIndex: "profit",
  323. key: "profit",
  324. },
  325. ];
  326. //通用
  327. const currency = [
  328. {
  329. title: "序号",
  330. dataIndex: "key",
  331. key: "key",
  332. },
  333. {
  334. title: "派单省份",
  335. dataIndex: "provinceName",
  336. key: "provinceName",
  337. },
  338. {
  339. title: "负责部门",
  340. dataIndex: "thchDepName",
  341. key: "thchDepName",
  342. },
  343. {
  344. title: "项目类别",
  345. dataIndex: "projectStatus",
  346. key: "projectStatus",
  347. },
  348. {
  349. title: "派单数(个)",
  350. dataIndex: "distributeCount",
  351. key: "distributeCount",
  352. },
  353. {
  354. title: "库存数(个)",
  355. dataIndex: "stockCount",
  356. key: "stockCount",
  357. },
  358. {
  359. title: "完成数",
  360. dataIndex: "completeCount",
  361. key: "completeCount",
  362. },
  363. {
  364. title: "公示/立项数",
  365. dataIndex: "setUpCount",
  366. key: "setUpCount",
  367. },
  368. {
  369. title: "签单额(万元)",
  370. dataIndex: "amountCount",
  371. key: "amountCount",
  372. },
  373. {
  374. title: "成本(万元)",
  375. dataIndex: "costAmount",
  376. key: "costAmount",
  377. },
  378. {
  379. title: "利润(万元)",
  380. dataIndex: "profit",
  381. key: "profit",
  382. },
  383. ];
  384. export {
  385. highTechColumns,
  386. invention,
  387. utilityModel,
  388. softWriting,
  389. otherTrademarks,
  390. currency,
  391. }