tableCol.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. export default {
  2. agg: {
  3. 微博: [
  4. {
  5. label: '排名',
  6. key: 'index',
  7. width: 50,
  8. },
  9. {
  10. label: '部门',
  11. key: 'depName',
  12. },
  13. {
  14. label: '账号',
  15. key: 'userName',
  16. },
  17. {
  18. label: '发稿量',
  19. key: 'publishCount',
  20. type: 'number',
  21. sortable: 'custom',
  22. },
  23. {
  24. label: '阅读量',
  25. key: 'readCount',
  26. type: 'number',
  27. sortable: 'custom',
  28. },
  29. // {
  30. // label: "本月累计阅读量",
  31. // key: "monthReadCount",
  32. // type: 'number'
  33. // },
  34. {
  35. label: '粉丝数',
  36. key: 'fans',
  37. type: 'number',
  38. sortable: 'custom',
  39. },
  40. {
  41. label: '分享量',
  42. key: 'shareCount',
  43. type: 'number',
  44. sortable: 'custom',
  45. },
  46. {
  47. label: '点赞量',
  48. key: 'likeCount',
  49. type: 'number',
  50. sortable: 'custom',
  51. },
  52. {
  53. label: '评论量',
  54. key: 'commentCount',
  55. type: 'number',
  56. sortable: 'custom',
  57. },
  58. ],
  59. 微信: [
  60. {
  61. label: '排名',
  62. key: 'index',
  63. width: 50,
  64. },
  65. {
  66. label: '部门',
  67. key: 'depName',
  68. },
  69. {
  70. label: '账号',
  71. key: 'userName',
  72. },
  73. {
  74. label: '发稿量',
  75. key: 'publishCount',
  76. type: 'number',
  77. sortable: 'custom',
  78. },
  79. {
  80. label: '阅读量',
  81. key: 'readCount',
  82. type: 'number',
  83. sortable: 'custom',
  84. },
  85. // {
  86. // label: "本月累计阅读量",
  87. // key: "monthReadCount",
  88. // type: 'number'
  89. // },
  90. {
  91. label: '粉丝数',
  92. key: 'fans',
  93. type: 'number',
  94. sortable: 'custom',
  95. },
  96. {
  97. label: '分享量',
  98. key: 'shareCount',
  99. type: 'number',
  100. sortable: 'custom',
  101. },
  102. {
  103. label: '收藏数',
  104. key: 'favCount',
  105. type: 'number',
  106. },
  107. ],
  108. 头条: [
  109. {
  110. label: '排名',
  111. key: 'index',
  112. width: 50,
  113. },
  114. {
  115. label: '部门',
  116. key: 'depName',
  117. },
  118. {
  119. label: '账号',
  120. key: 'userName',
  121. },
  122. {
  123. label: '发稿量',
  124. key: 'publishCount',
  125. type: 'number',
  126. sortable: 'custom',
  127. },
  128. {
  129. label: '阅读量',
  130. key: 'readCount',
  131. type: 'number',
  132. sortable: 'custom',
  133. },
  134. // {
  135. // label: "本月累计阅读量",
  136. // key: "monthReadCount",
  137. // type: 'number'
  138. // },
  139. ],
  140. 抖音: [
  141. {
  142. label: '排名',
  143. key: 'index',
  144. width: 50,
  145. },
  146. {
  147. label: '部门',
  148. key: 'depName',
  149. },
  150. {
  151. label: '账号',
  152. key: 'userName',
  153. },
  154. {
  155. label: '发稿量',
  156. key: 'publishCount',
  157. type: 'number',
  158. sortable: 'custom',
  159. },
  160. {
  161. label: '阅读量',
  162. key: 'readCount',
  163. type: 'number',
  164. sortable: 'custom',
  165. },
  166. // {
  167. // label: "本月累计阅读量",
  168. // key: "monthReadCount",
  169. // type: 'number'
  170. // },
  171. {
  172. label: '分享量',
  173. key: 'shareCount',
  174. type: 'number',
  175. sortable: 'custom',
  176. },
  177. {
  178. label: '点赞量',
  179. key: 'likeCount',
  180. type: 'number',
  181. sortable: 'custom',
  182. },
  183. // {
  184. // label: "粉丝数",
  185. // key: "fans",
  186. // sortable: "custom"
  187. // },
  188. ],
  189. 快手: [
  190. {
  191. label: '排名',
  192. key: 'index',
  193. width: 50,
  194. },
  195. {
  196. label: '部门',
  197. key: 'depName',
  198. },
  199. {
  200. label: '账号',
  201. key: 'userName',
  202. },
  203. {
  204. label: '发稿量',
  205. key: 'publishCount',
  206. type: 'number',
  207. sortable: 'custom',
  208. },
  209. {
  210. label: '阅读量',
  211. key: 'readCount',
  212. type: 'number',
  213. sortable: 'custom',
  214. },
  215. // {
  216. // label: "本月累计阅读量",
  217. // key: "monthReadCount",
  218. // type: 'number'
  219. // },
  220. {
  221. label: '评论量',
  222. key: 'commentCount',
  223. type: 'number',
  224. sortable: 'custom',
  225. },
  226. {
  227. label: '点赞量',
  228. key: 'likeCount',
  229. type: 'number',
  230. sortable: 'custom',
  231. },
  232. ],
  233. B站: [
  234. {
  235. label: '排名',
  236. key: 'index',
  237. width: 50,
  238. },
  239. {
  240. label: '部门',
  241. key: 'depName',
  242. },
  243. {
  244. label: '账号',
  245. key: 'userName',
  246. },
  247. {
  248. label: '发稿量',
  249. key: 'publishCount',
  250. type: 'number',
  251. sortable: 'custom',
  252. },
  253. {
  254. label: '阅读量',
  255. key: 'readCount',
  256. type: 'number',
  257. sortable: 'custom',
  258. },
  259. // {
  260. // label: "本月累计阅读量",
  261. // key: "monthReadCount",
  262. // type: 'number'
  263. // },
  264. ],
  265. 视频号: [
  266. {
  267. label: '排名',
  268. key: 'index',
  269. width: 50,
  270. },
  271. {
  272. label: '部门',
  273. key: 'depName',
  274. },
  275. {
  276. label: '账号',
  277. key: 'userName',
  278. },
  279. {
  280. label: '发稿量',
  281. key: 'publishCount',
  282. type: 'number',
  283. sortable: 'custom',
  284. },
  285. {
  286. label: '转发量',
  287. key: 'shareCount',
  288. type: 'number',
  289. sortable: 'custom',
  290. },
  291. {
  292. label: '点赞量',
  293. key: 'likeCount',
  294. type: 'number',
  295. sortable: 'custom',
  296. },
  297. {
  298. label: '评论量',
  299. key: 'commentCount',
  300. type: 'number',
  301. sortable: 'custom',
  302. },
  303. ],
  304. },
  305. list: {
  306. 微博: [
  307. {
  308. label: '排名',
  309. key: 'index',
  310. width: 50,
  311. },
  312. {
  313. label: '部门',
  314. key: 'depName',
  315. },
  316. {
  317. label: '账号',
  318. key: 'userName',
  319. },
  320. {
  321. label: '稿件',
  322. key: 'title',
  323. },
  324. {
  325. label: '阅读量',
  326. key: 'playCount',
  327. type: 'number',
  328. sortable: 'custom',
  329. },
  330. {
  331. label: '分享量',
  332. key: 'shareCount',
  333. type: 'number',
  334. sortable: 'custom',
  335. },
  336. {
  337. label: '点赞量',
  338. key: 'likeCount',
  339. type: 'number',
  340. sortable: 'custom',
  341. },
  342. {
  343. label: '评论量',
  344. key: 'commentCount',
  345. type: 'number',
  346. sortable: 'custom',
  347. },
  348. {
  349. label: '发布时间',
  350. key: 'publishTime',
  351. sortable: 'custom',
  352. },
  353. ],
  354. 微信: [
  355. {
  356. label: '排名',
  357. key: 'index',
  358. width: 50,
  359. },
  360. {
  361. label: '部门',
  362. key: 'depName',
  363. },
  364. {
  365. label: '账号',
  366. key: 'userName',
  367. },
  368. {
  369. label: '稿件',
  370. key: 'title',
  371. },
  372. {
  373. label: '转发量',
  374. key: 'shareCount',
  375. type: 'number',
  376. sortable: 'custom',
  377. },
  378. {
  379. label: '阅读量',
  380. key: 'playCount',
  381. type: 'number',
  382. sortable: 'custom',
  383. },
  384. {
  385. label: '分享量',
  386. key: 'shareCount',
  387. type: 'number',
  388. sortable: 'custom',
  389. },
  390. {
  391. label: '发布时间',
  392. key: 'publishTime',
  393. sortable: 'custom',
  394. },
  395. ],
  396. 头条: [
  397. {
  398. label: '排名',
  399. key: 'index',
  400. width: 50,
  401. },
  402. {
  403. label: '部门',
  404. key: 'depName',
  405. },
  406. {
  407. label: '账号',
  408. key: 'userName',
  409. },
  410. {
  411. label: '稿件',
  412. key: 'title',
  413. },
  414. {
  415. label: '转发量',
  416. key: 'shareCount',
  417. type: 'number',
  418. sortable: 'custom',
  419. },
  420. {
  421. label: '阅读量',
  422. key: 'playCount',
  423. type: 'number',
  424. sortable: 'custom',
  425. },
  426. {
  427. label: '发布时间',
  428. key: 'publishTime',
  429. sortable: 'custom',
  430. },
  431. ],
  432. 抖音: [
  433. {
  434. label: '排名',
  435. key: 'index',
  436. width: 50,
  437. },
  438. {
  439. label: '部门',
  440. key: 'depName',
  441. },
  442. {
  443. label: '账号',
  444. key: 'userName',
  445. },
  446. {
  447. label: '稿件',
  448. key: 'title',
  449. },
  450. {
  451. label: '转发量',
  452. key: 'shareCount',
  453. type: 'number',
  454. sortable: 'custom',
  455. },
  456. {
  457. label: '阅读量',
  458. key: 'playCount',
  459. type: 'number',
  460. sortable: 'custom',
  461. },
  462. {
  463. label: '分享量',
  464. key: 'shareCount',
  465. type: 'number',
  466. sortable: 'custom',
  467. },
  468. {
  469. label: '点赞量',
  470. key: 'likeCount',
  471. type: 'number',
  472. sortable: 'custom',
  473. },
  474. {
  475. label: '发布时间',
  476. key: 'publishTime',
  477. sortable: 'custom',
  478. },
  479. ],
  480. 快手: [
  481. {
  482. label: '排名',
  483. key: 'index',
  484. width: 50,
  485. },
  486. {
  487. label: '部门',
  488. key: 'depName',
  489. },
  490. {
  491. label: '账号',
  492. key: 'userName',
  493. },
  494. {
  495. label: '稿件',
  496. key: 'title',
  497. },
  498. {
  499. label: '阅读量',
  500. key: 'playCount',
  501. type: 'number',
  502. sortable: 'custom',
  503. },
  504. {
  505. label: '发布时间',
  506. key: 'publishTime',
  507. sortable: 'custom',
  508. },
  509. {
  510. label: '评论量',
  511. key: 'commentCount',
  512. type: 'number',
  513. sortable: 'custom',
  514. },
  515. {
  516. label: '点赞量',
  517. key: 'likeCount',
  518. type: 'number',
  519. sortable: 'custom',
  520. },
  521. ],
  522. B站: [
  523. {
  524. label: '排名',
  525. key: 'index',
  526. width: 50,
  527. },
  528. {
  529. label: '部门',
  530. key: 'depName',
  531. },
  532. {
  533. label: '账号',
  534. key: 'userName',
  535. },
  536. {
  537. label: '稿件',
  538. key: 'title',
  539. },
  540. {
  541. label: '转发量',
  542. key: 'shareCount',
  543. type: 'number',
  544. sortable: 'custom',
  545. },
  546. {
  547. label: '阅读量',
  548. key: 'playCount',
  549. type: 'number',
  550. sortable: 'custom',
  551. },
  552. {
  553. label: '发布时间',
  554. key: 'publishTime',
  555. sortable: 'custom',
  556. },
  557. ],
  558. 视频号: [
  559. {
  560. label: '排名',
  561. key: 'index',
  562. width: 50,
  563. },
  564. {
  565. label: '部门',
  566. key: 'depName',
  567. },
  568. {
  569. label: '账号',
  570. key: 'userName',
  571. },
  572. {
  573. label: '稿件',
  574. key: 'title',
  575. },
  576. {
  577. label: '点赞量',
  578. key: 'likeCount',
  579. type: 'number',
  580. sortable: 'custom',
  581. },
  582. {
  583. label: '转发量',
  584. key: 'shareCount',
  585. type: 'number',
  586. sortable: 'custom',
  587. },
  588. {
  589. label: '评论量',
  590. key: 'commentCount',
  591. type: 'number',
  592. sortable: 'custom',
  593. },
  594. {
  595. label: '发布时间',
  596. key: 'publishTime',
  597. sortable: 'custom',
  598. },
  599. ],
  600. },
  601. };