12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- export const KeywordList = [
- {
- title: "搜索历史",
- imgShown: true,
- },
- {
- title: "热搜关键词",
- imgShown: false,
- },
- {
- title: "推荐关键词",
- imgShown: false,
- },
- ];
- export const TabsList = [
- {
- title: "综合",
- id: 1,
- },
- {
- title: "纪要/图表",
- id: 2,
- },
- {
- title: "资源包/报告",
- id: 3,
- },
- {
- title: "活动",
- id: 4,
- },
- {
- title: "微路演",
- id: 5,
- },
- ];
- export const SummarySelect = [
- { name: "匹配度", value: "Matching" },
- { name: "发布时间", value: "PublishDate" },
- ];
- export const ActivitySelect = [
- {
- type: 4,
- name: "活动",
- list: [
- { name: "全部", value: "0" },
- { name: "可回放", value: "1" },
- ],
- },
- {
- type: 5,
- name: "微路演",
- list: [
- { name: "全部", value: "0" },
- { name: "视频", value: "1" },
- { name: "音频", value: "2" },
- ],
- },
- ];
|