searchList.js 661 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. export const SummarySelect = [
  34. { name: "匹配度", value: "Matching" },
  35. { name: "发布时间", value: "PublishDate" },
  36. ];
  37. export const ActivitySelect = [
  38. { name: "全部", value: "0" },
  39. { name: "可回放", value: "1" },
  40. ];