searchList.js 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. export const KeywordList = [
  2. {
  3. title: "搜索历史",
  4. imgShown: true,
  5. },
  6. {
  7. title: "热搜关键词",
  8. imgShown: false,
  9. },
  10. {
  11. title: "推荐关键词",
  12. imgShown: false,
  13. },
  14. ];
  15. export const TabsList = [
  16. {
  17. title: "综合",
  18. id: 1,
  19. },
  20. {
  21. title: "纪要/图表",
  22. id: 2,
  23. },
  24. {
  25. title: "资源包/报告",
  26. id: 3,
  27. },
  28. {
  29. title: "活动",
  30. id: 4,
  31. },
  32. {
  33. title: "微路演",
  34. id: 5,
  35. },
  36. ];
  37. export const SummarySelect = [
  38. { name: "匹配度", value: "Matching" },
  39. { name: "发布时间", value: "PublishDate" },
  40. ];
  41. export const ActivitySelect = [
  42. {
  43. type: 4,
  44. name: "活动",
  45. list: [
  46. { name: "全部", value: "0" },
  47. { name: "可回放", value: "1" },
  48. ],
  49. },
  50. {
  51. type: 5,
  52. name: "微路演",
  53. list: [
  54. { name: "全部", value: "0" },
  55. { name: "视频", value: "1" },
  56. { name: "音频", value: "2" },
  57. ],
  58. },
  59. ];