Showing
9 changed files
with
1142 additions
and
37 deletions
| @@ -292,6 +292,11 @@ export class HttpUrlUtils { | @@ -292,6 +292,11 @@ export class HttpUrlUtils { | ||
| 292 | */ | 292 | */ |
| 293 | static readonly RECOMMEND_LIST: string = "/api/rmrb-bff-display-zh/recommend/zh/c/list"; | 293 | static readonly RECOMMEND_LIST: string = "/api/rmrb-bff-display-zh/recommend/zh/c/list"; |
| 294 | 294 | ||
| 295 | + /** | ||
| 296 | + * 搜索推荐 | ||
| 297 | + */ | ||
| 298 | + static readonly SEARCH_SUGGEST_DATA_PATH: string = "/api/rmrb-bff-display-zh/recommend/zh/c/list"; | ||
| 299 | + | ||
| 295 | public static set hostUrl(value: string) { | 300 | public static set hostUrl(value: string) { |
| 296 | HttpUrlUtils._hostUrl = value; | 301 | HttpUrlUtils._hostUrl = value; |
| 297 | } | 302 | } |
| @@ -475,7 +480,7 @@ export class HttpUrlUtils { | @@ -475,7 +480,7 @@ export class HttpUrlUtils { | ||
| 475 | return 'Android'; | 480 | return 'Android'; |
| 476 | } | 481 | } |
| 477 | 482 | ||
| 478 | - private static getImei() { | 483 | + public static getImei() { |
| 479 | // TODO | 484 | // TODO |
| 480 | return '8a81226a-cabd-3e1b-b630-b51db4a720ed'; | 485 | return '8a81226a-cabd-3e1b-b630-b51db4a720ed'; |
| 481 | } | 486 | } |
| @@ -807,6 +812,11 @@ export class HttpUrlUtils { | @@ -807,6 +812,11 @@ export class HttpUrlUtils { | ||
| 807 | let url = HttpUrlUtils._hostUrl + "/api/rmrb-interact/interact/zh/c/like/executeLike"; | 812 | let url = HttpUrlUtils._hostUrl + "/api/rmrb-interact/interact/zh/c/like/executeLike"; |
| 808 | return url; | 813 | return url; |
| 809 | } | 814 | } |
| 815 | + //搜索推荐 | ||
| 816 | + static getSearchSuggestDataUrl() { | ||
| 817 | + let url = HttpUrlUtils._hostUrl + HttpUrlUtils.SEARCH_SUGGEST_DATA_PATH | ||
| 818 | + return url | ||
| 819 | + } | ||
| 810 | 820 | ||
| 811 | // static getYcgCommonHeaders(): HashMap<string, string> { | 821 | // static getYcgCommonHeaders(): HashMap<string, string> { |
| 812 | // let headers: HashMap<string, string> = new HashMap<string, string>() | 822 | // let headers: HashMap<string, string> = new HashMap<string, string>() |
| @@ -112,7 +112,7 @@ export struct SearchComponent { | @@ -112,7 +112,7 @@ export struct SearchComponent { | ||
| 112 | } else { | 112 | } else { |
| 113 | if (this.hasChooseSearch) { | 113 | if (this.hasChooseSearch) { |
| 114 | //搜索结果 | 114 | //搜索结果 |
| 115 | - SearchResultComponent({count:this.count,searchText:this.searchText}) | 115 | + SearchResultComponent({count:this.count,searchText:this.searchText,isInit:true}) |
| 116 | } else { | 116 | } else { |
| 117 | //联想搜索 | 117 | //联想搜索 |
| 118 | SearchRelatedComponent({relatedSearchContentData:$relatedSearchContentsData,onGetSearchRes: (item): void => this.getSearchRelatedResData(item),searchText:this.searchText}) | 118 | SearchRelatedComponent({relatedSearchContentData:$relatedSearchContentsData,onGetSearchRes: (item): void => this.getSearchRelatedResData(item),searchText:this.searchText}) |
| 1 | +import { ContentDTO } from 'wdBean/Index' | ||
| 2 | +import { LazyDataSource, UserDataLocal } from 'wdKit/Index' | ||
| 3 | +import { HttpUrlUtils } from 'wdNetwork/Index' | ||
| 4 | +import SearcherAboutDataModel from '../../model/SearcherAboutDataModel' | ||
| 5 | +import { SearchSuggestRequestItem } from '../../viewmodel/SearchSuggestRequestItem' | ||
| 6 | +import { CardParser } from '../CardParser' | ||
| 7 | +import { EmptyComponent } from '../view/EmptyComponent' | ||
| 1 | import { SearchResultContentComponent } from './SearchResultContentComponent' | 8 | import { SearchResultContentComponent } from './SearchResultContentComponent' |
| 2 | 9 | ||
| 3 | const TAG = "SearchResultComponent" | 10 | const TAG = "SearchResultComponent" |
| 11 | + | ||
| 4 | /** | 12 | /** |
| 5 | * 搜索结果 | 13 | * 搜索结果 |
| 6 | * 搜索结果为null(空布局 + 为你推荐) | 14 | * 搜索结果为null(空布局 + 为你推荐) |
| 7 | */ | 15 | */ |
| 8 | @Component | 16 | @Component |
| 9 | -export struct SearchResultComponent{ | ||
| 10 | - @Prop count:string[] = [] | 17 | +export struct SearchResultComponent { |
| 18 | + @Prop count: string[] | ||
| 11 | @Prop searchText: string | 19 | @Prop searchText: string |
| 12 | - | 20 | + @State isInit:boolean = false; |
| 13 | @State currentIndex: number = 0 | 21 | @State currentIndex: number = 0 |
| 14 | private controller: TabsController = new TabsController() | 22 | private controller: TabsController = new TabsController() |
| 15 | fontColor: string = '#999999' | 23 | fontColor: string = '#999999' |
| 16 | selectedFontColor: string = '#000000' | 24 | selectedFontColor: string = '#000000' |
| 25 | + @State data: LazyDataSource<ContentDTO> = new LazyDataSource(); | ||
| 26 | + @State suggest_count: number = 0; | ||
| 27 | + @State isLoading: boolean = false | ||
| 28 | + scroller: Scroller = new Scroller() | ||
| 29 | + | ||
| 30 | + aboutToAppear(): void { | ||
| 31 | + if (this.count.length === 0 && this.isInit == true) { | ||
| 32 | + this.getSuggestData() | ||
| 33 | + } | ||
| 34 | + } | ||
| 35 | + | ||
| 36 | + getSuggestData() { | ||
| 37 | + this.isLoading = true | ||
| 38 | + | ||
| 39 | + let request: SearchSuggestRequestItem = new SearchSuggestRequestItem(2, "", "", HttpUrlUtils.getImei(), UserDataLocal.userId, 8, "") | ||
| 40 | + | ||
| 41 | + SearcherAboutDataModel.getSearchSuggestData(request, getContext(this)).then((value) => { | ||
| 42 | + value.forEach((item) => { | ||
| 43 | + this.data.push({ | ||
| 44 | + appStyle: item.appStyle, | ||
| 45 | + channelId: item.channelId + "", | ||
| 46 | + coverType: item.coverType, | ||
| 47 | + coverUrl: item.coverUrl, | ||
| 48 | + newsTitle: item.newsTitle, | ||
| 49 | + objectId: item.objectId, | ||
| 50 | + publishTime: item.publishTime, | ||
| 51 | + relId: item.relId + "", | ||
| 52 | + relType: item.relType + "", | ||
| 53 | + source: item.source, | ||
| 54 | + } as ContentDTO) | ||
| 55 | + }) | ||
| 56 | + this.data.notifyDataReload() | ||
| 57 | + this.suggest_count = this.data.totalCount() | ||
| 58 | + this.isLoading = false | ||
| 59 | + }) | ||
| 60 | + } | ||
| 17 | 61 | ||
| 18 | build() { | 62 | build() { |
| 19 | Column() { | 63 | Column() { |
| 20 | - Tabs({ barPosition: BarPosition.Start, controller: this.controller }) { | ||
| 21 | - ForEach(this.count, (item: string, index: number ) => { | ||
| 22 | - TabContent(){ | ||
| 23 | - SearchResultContentComponent({keywords:this.searchText,searchType:item}) | ||
| 24 | - }.tabBar(this.TabBuilder(index,item)) | ||
| 25 | - }, (item: string, index: number) => index.toString()) | 64 | + if (this.count != null && this.count.length === 0 && this.isInit == true) { |
| 65 | + List() { | ||
| 66 | + ListItem() { | ||
| 67 | + //缺省图 | ||
| 68 | + EmptyComponent({emptyType:4}) | ||
| 69 | + .height('612lpx') | ||
| 70 | + .width('100%') | ||
| 71 | + } | ||
| 72 | + if(this.suggest_count > 0){ | ||
| 73 | + ListItem() { | ||
| 74 | + Row() { | ||
| 75 | + Image($r('app.media.search_suggest_icon')) | ||
| 76 | + .width('6lpx') | ||
| 77 | + .height('31lpx') | ||
| 78 | + .objectFit(ImageFit.Cover) | ||
| 79 | + .interpolation(ImageInterpolation.High) | ||
| 80 | + .margin({ right: '10lpx' }) | ||
| 81 | + Text("为你推荐") | ||
| 82 | + .textAlign(TextAlign.Start) | ||
| 83 | + .fontWeight('600lpx') | ||
| 84 | + .fontSize('33lpx') | ||
| 85 | + .lineHeight('46lpx') | ||
| 86 | + .fontColor($r('app.color.color_222222')) | ||
| 87 | + }.height('84lpx') | ||
| 88 | + .padding({ left: '31lpx', right: '31lpx' }) | ||
| 89 | + .width('100%') | ||
| 90 | + .alignItems(VerticalAlign.Center) | ||
| 91 | + } | ||
| 92 | + } | ||
| 93 | + | ||
| 94 | + LazyForEach(this.data, (item: ContentDTO, index: number) => { | ||
| 95 | + ListItem() { | ||
| 96 | + Column() { | ||
| 97 | + CardParser({contentDTO:item}) | ||
| 98 | + if (index != this.data.totalCount() - 1) { | ||
| 99 | + Divider() | ||
| 100 | + .width('100%') | ||
| 101 | + .height('1lpx') | ||
| 102 | + .color($r('app.color.color_F5F5F5')) | ||
| 103 | + .strokeWidth('1lpx') | ||
| 104 | + } | ||
| 105 | + } | ||
| 106 | + } | ||
| 107 | + }) | ||
| 108 | + } | ||
| 109 | + .cachedCount(6) | ||
| 110 | + .edgeEffect(EdgeEffect.None) | ||
| 111 | + .scrollBar(BarState.Off) | ||
| 112 | + .height('100%') | ||
| 113 | + .onReachEnd(() => { | ||
| 114 | + if (!this.isLoading) { | ||
| 115 | + this.getSuggestData() | ||
| 116 | + } | ||
| 117 | + }) | ||
| 118 | + } else { | ||
| 119 | + Tabs({ barPosition: BarPosition.Start, controller: this.controller }) { | ||
| 120 | + ForEach(this.count, (item: string, index: number) => { | ||
| 121 | + TabContent() { | ||
| 122 | + SearchResultContentComponent({ keywords: this.searchText, searchType: item }) | ||
| 123 | + }.tabBar(this.TabBuilder(index, item)) | ||
| 124 | + }, (item: string, index: number) => index.toString()) | ||
| 125 | + } | ||
| 126 | + .vertical(false) | ||
| 127 | + .barMode(BarMode.Fixed) | ||
| 128 | + .barWidth('100%') | ||
| 129 | + .barHeight('84lpx') | ||
| 130 | + .animationDuration(0) | ||
| 131 | + .onChange((index: number) => { | ||
| 132 | + this.currentIndex = index | ||
| 133 | + }) | ||
| 134 | + .width('100%') | ||
| 135 | + .layoutWeight(1) | ||
| 26 | } | 136 | } |
| 27 | - .vertical(false) | ||
| 28 | - .barMode(BarMode.Fixed) | ||
| 29 | - .barWidth('100%') | ||
| 30 | - .barHeight('84lpx') | ||
| 31 | - .animationDuration(0) | ||
| 32 | - .onChange((index: number) => { | ||
| 33 | - this.currentIndex = index | ||
| 34 | - }) | ||
| 35 | - .width('100%') | ||
| 36 | - .layoutWeight(1) | ||
| 37 | }.width('100%') | 137 | }.width('100%') |
| 38 | .margin({ top: '12lpx' }) | 138 | .margin({ top: '12lpx' }) |
| 39 | } | 139 | } |
| 40 | 140 | ||
| 41 | - @Builder TabBuilder(index: number, item: string) { | ||
| 42 | - Stack(){ | 141 | + @Builder |
| 142 | + TabBuilder(index: number, item: string) { | ||
| 143 | + Stack() { | ||
| 43 | Text(item) | 144 | Text(item) |
| 44 | .height('38lpx') | 145 | .height('38lpx') |
| 45 | .fontSize('33lpx') | 146 | .fontSize('33lpx') |
| @@ -47,22 +148,21 @@ export struct SearchResultComponent{ | @@ -47,22 +148,21 @@ export struct SearchResultComponent{ | ||
| 47 | .fontColor(this.currentIndex === index ? this.selectedFontColor : this.fontColor) | 148 | .fontColor(this.currentIndex === index ? this.selectedFontColor : this.fontColor) |
| 48 | .lineHeight('38lpx') | 149 | .lineHeight('38lpx') |
| 49 | 150 | ||
| 50 | - if(this.currentIndex === index){ | 151 | + if (this.currentIndex === index) { |
| 51 | Divider() | 152 | Divider() |
| 52 | .width('31lpx') | 153 | .width('31lpx') |
| 53 | .height('4lpx') | 154 | .height('4lpx') |
| 54 | .color('#ED2800') | 155 | .color('#ED2800') |
| 55 | .strokeWidth('4lpx') | 156 | .strokeWidth('4lpx') |
| 56 | - .margin({top:'50lpx'}) | 157 | + .margin({ top: '50lpx' }) |
| 57 | .id("divTag") | 158 | .id("divTag") |
| 58 | } | 159 | } |
| 59 | - }.onClick(()=>{ | 160 | + }.onClick(() => { |
| 60 | this.currentIndex = index | 161 | this.currentIndex = index |
| 61 | this.controller.changeIndex(this.currentIndex) | 162 | this.controller.changeIndex(this.currentIndex) |
| 62 | }) | 163 | }) |
| 63 | .height('100%') | 164 | .height('100%') |
| 64 | - .margin({right:'9lpx'}) | ||
| 65 | - .padding({left:'31lpx',right:index === this.count.length-1?"31lpx":"0lpx"}) | 165 | + .margin({ right: '9lpx' }) |
| 166 | + .padding({ left: '31lpx', right: index === this.count.length - 1 ? "31lpx" : "0lpx" }) | ||
| 66 | } | 167 | } |
| 67 | - | ||
| 68 | } | 168 | } |
| @@ -9,6 +9,8 @@ import { SearchResultContentData } from '../viewmodel/SearchResultContentData'; | @@ -9,6 +9,8 @@ import { SearchResultContentData } from '../viewmodel/SearchResultContentData'; | ||
| 9 | import { contentListParams, InteractDataDTO } from 'wdBean/Index'; | 9 | import { contentListParams, InteractDataDTO } from 'wdBean/Index'; |
| 10 | import { CreatorDetailRequestItem } from '../viewmodel/CreatorDetailRequestItem'; | 10 | import { CreatorDetailRequestItem } from '../viewmodel/CreatorDetailRequestItem'; |
| 11 | import { CreatorDetailResponseItem } from '../viewmodel/CreatorDetailResponseItem'; | 11 | import { CreatorDetailResponseItem } from '../viewmodel/CreatorDetailResponseItem'; |
| 12 | +import { SearchSuggestData } from '../viewmodel/SearchSuggestData'; | ||
| 13 | +import { SearchSuggestRequestItem } from '../viewmodel/SearchSuggestRequestItem'; | ||
| 12 | 14 | ||
| 13 | const TAG = "SearcherAboutDataModel" | 15 | const TAG = "SearcherAboutDataModel" |
| 14 | 16 | ||
| @@ -349,6 +351,45 @@ class SearcherAboutDataModel{ | @@ -349,6 +351,45 @@ class SearcherAboutDataModel{ | ||
| 349 | return WDHttp.post<ResponseDTO<CreatorDetailResponseItem[]>>(url,object, headers) | 351 | return WDHttp.post<ResponseDTO<CreatorDetailResponseItem[]>>(url,object, headers) |
| 350 | }; | 352 | }; |
| 351 | 353 | ||
| 354 | + /** | ||
| 355 | + * 搜索推荐 展示列表 | ||
| 356 | + */ | ||
| 357 | + getSearchSuggestData(object:SearchSuggestRequestItem,context: Context): Promise<SearchSuggestData[]> { | ||
| 358 | + return new Promise<SearchSuggestData[]>((success, error) => { | ||
| 359 | + Logger.info(TAG, `getSearchSuggestData start`); | ||
| 360 | + this.fetchSearchSuggestData(object).then((navResDTO: ResponseDTO<SearchSuggestData[]>) => { | ||
| 361 | + if (!navResDTO || navResDTO.code != 0 /*|| navResDTO.data == null*/) { | ||
| 362 | + // success(this.getSearchSuggestDataLocal(context)) | ||
| 363 | + success([]) | ||
| 364 | + return | ||
| 365 | + } | ||
| 366 | + Logger.info(TAG, "getSearchSuggestData then,SearchResultListResDTO.timeStamp:" + navResDTO.timestamp); | ||
| 367 | + let navigationBean = navResDTO.data as SearchSuggestData[] | ||
| 368 | + success(navigationBean); | ||
| 369 | + }).catch((err: Error) => { | ||
| 370 | + Logger.error(TAG, `getSearchSuggestData catch, error.name : ${err.name}, error.message:${err.message}`); | ||
| 371 | + // success(this.getSearchSuggestDataLocal(context)) | ||
| 372 | + success([]) | ||
| 373 | + }) | ||
| 374 | + }) | ||
| 375 | + } | ||
| 376 | + | ||
| 377 | + fetchSearchSuggestData(object:SearchSuggestRequestItem) { | ||
| 378 | + let url = HttpUrlUtils.getSearchSuggestDataUrl() | ||
| 379 | + let headers: HashMap<string, string> = HttpUrlUtils.getCommonHeaders(); | ||
| 380 | + return WDHttp.post<ResponseDTO<SearchSuggestData[]>>(url,object, headers) | ||
| 381 | + }; | ||
| 382 | + | ||
| 383 | + async getSearchSuggestDataLocal(context: Context): Promise<SearchSuggestData[]> { | ||
| 384 | + Logger.info(TAG, `getInteractListDataLocal start`); | ||
| 385 | + let compRes: ResponseDTO<SearchSuggestData[]> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<SearchSuggestData[]>>(context,'search_suggest_data.json' ); | ||
| 386 | + if (!compRes || !compRes.data) { | ||
| 387 | + Logger.info(TAG, `getInteractListDataLocal compRes is empty`); | ||
| 388 | + return [] | ||
| 389 | + } | ||
| 390 | + Logger.info(TAG, `getInteractListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`); | ||
| 391 | + return compRes.data | ||
| 392 | + } | ||
| 352 | 393 | ||
| 353 | 394 | ||
| 354 | 395 |
| @@ -82,14 +82,17 @@ struct MineHomePage { | @@ -82,14 +82,17 @@ struct MineHomePage { | ||
| 82 | .lineHeight('50lpx') | 82 | .lineHeight('50lpx') |
| 83 | .fontWeight('500lpx') | 83 | .fontWeight('500lpx') |
| 84 | 84 | ||
| 85 | - Text(`等级${this.levelId}`) | ||
| 86 | - .textAlign(TextAlign.Center) | ||
| 87 | - .fontColor($r('app.color.color_ED2800')) | ||
| 88 | - .backgroundColor($r('app.color.white')) | ||
| 89 | - .fontSize('19lpx') | ||
| 90 | - .width('96lpx') | ||
| 91 | - .height('35lpx') | ||
| 92 | - .margin({ left: '10lpx' }) | 85 | + if(this.levelId>0){ |
| 86 | + Text(`等级${this.levelId}`) | ||
| 87 | + .textAlign(TextAlign.Center) | ||
| 88 | + .fontColor($r('app.color.color_ED2800')) | ||
| 89 | + .backgroundColor($r('app.color.white')) | ||
| 90 | + .fontSize('19lpx') | ||
| 91 | + .width('96lpx') | ||
| 92 | + .height('35lpx') | ||
| 93 | + .margin({ left: '10lpx' }) | ||
| 94 | + } | ||
| 95 | + | ||
| 93 | Blank() | 96 | Blank() |
| 94 | }.width('507lpx') | 97 | }.width('507lpx') |
| 95 | 98 |
| 1 | +@Observed | ||
| 2 | +export class SearchSuggestData{ | ||
| 3 | + // activityExt: null | ||
| 4 | + appStyle: string = "" | ||
| 5 | + // askInfo: null | ||
| 6 | + axisColor: string = "" | ||
| 7 | + // bestNoticer: null | ||
| 8 | + // bottomNavId: null | ||
| 9 | + cardItemId: string = "" | ||
| 10 | + channelId: number = -1 | ||
| 11 | + // commentInfo: null | ||
| 12 | + corner: string = "" | ||
| 13 | + coverSize: string = "" | ||
| 14 | + coverType: number = -1 | ||
| 15 | + coverUrl: string = "" | ||
| 16 | + expIds: string = "" | ||
| 17 | + extra: string = "" | ||
| 18 | + fullColumnImgUrls: Array<FullColumnImgUrls> = [] | ||
| 19 | + // hasMore: null | ||
| 20 | + itemId: string = "" | ||
| 21 | + itemType: string = "" | ||
| 22 | + itemTypeCode: string = "" | ||
| 23 | + keyArticle: number = -1 | ||
| 24 | + // landscape: null | ||
| 25 | + // likeStyle: null | ||
| 26 | + linkUrl: string = "" | ||
| 27 | + // liveInfo: null | ||
| 28 | + menuShow: number = -1 | ||
| 29 | + newTags: string = "" | ||
| 30 | + newsAuthor: string = "" | ||
| 31 | + newsSubTitle: string = "" | ||
| 32 | + newsSummary: string = "" | ||
| 33 | + newsTitle: string = "" | ||
| 34 | + newsTitleColor: string = "" | ||
| 35 | + objectId: string = "" | ||
| 36 | + objectLevel: string = "" | ||
| 37 | + objectType: string = "" | ||
| 38 | + // openComment: null | ||
| 39 | + // openLikes: null | ||
| 40 | + pageId: string = "" | ||
| 41 | + // photoNum: null | ||
| 42 | + // position: null | ||
| 43 | + // productNum: null | ||
| 44 | + publishTime: string = "" | ||
| 45 | + // pushTime: null | ||
| 46 | + // pushUnqueId: null | ||
| 47 | + readFlag: number = -1 | ||
| 48 | + recommend: number = -1 | ||
| 49 | + relId: number = -1 | ||
| 50 | + relObjectId: string = "" | ||
| 51 | + relType: number = -1 | ||
| 52 | + // rmhInfo: null | ||
| 53 | + rmhPlatform: number = -1 | ||
| 54 | + sceneId: string = "" | ||
| 55 | + // shareInfo: null | ||
| 56 | + // slideShows: Array< unknown > | ||
| 57 | + // sortValue: null | ||
| 58 | + source: string = "" | ||
| 59 | + subObjectType: string = "" | ||
| 60 | + subSceneId: string = "" | ||
| 61 | + // tagIds: Array< unknown > | ||
| 62 | + // tagWord: null | ||
| 63 | + // titleShow: null | ||
| 64 | + // titleShowPolicy: null | ||
| 65 | + // topicTemplate: null | ||
| 66 | + traceId: string = "" | ||
| 67 | + traceInfo: string = "" | ||
| 68 | + // userInfo: null | ||
| 69 | + videoInfo: VideoInfo = new VideoInfo() | ||
| 70 | + visitorComment: number = -1 | ||
| 71 | + // voiceInfo: null | ||
| 72 | +} | ||
| 73 | + | ||
| 74 | +class FullColumnImgUrls{ | ||
| 75 | + // format: null | ||
| 76 | + fullUrl: string = "" | ||
| 77 | + height: number = -1 | ||
| 78 | + landscape: number = -1 | ||
| 79 | + size: number = -1 | ||
| 80 | + url: string = "" | ||
| 81 | + weight: number = -1 | ||
| 82 | +} | ||
| 83 | + | ||
| 84 | +class VideoInfo{ | ||
| 85 | + firstFrameImageUri: string = "" | ||
| 86 | + videoDuration: number = -1 | ||
| 87 | + videoLandscape: number = -1 | ||
| 88 | + videoUrl: string = "" | ||
| 89 | +} | ||
| 90 | + |
| 1 | +export class SearchSuggestRequestItem{ | ||
| 2 | + recType: number = 0 | ||
| 3 | + relId: string = "" | ||
| 4 | + contentId: string = "" | ||
| 5 | + imei: string = "" | ||
| 6 | + userId: string = "" | ||
| 7 | + contentType: number = 0 | ||
| 8 | + channelId: string = "" | ||
| 9 | + | ||
| 10 | + constructor(recType: number, relId: string , contentId: string , imei: string ,userId: string , | ||
| 11 | + contentType: number,channelId: string ) { | ||
| 12 | + this.recType = recType | ||
| 13 | + this.relId = relId | ||
| 14 | + this.contentId = contentId | ||
| 15 | + this.imei = imei | ||
| 16 | + this.userId = userId | ||
| 17 | + this.contentType = contentType | ||
| 18 | + this.channelId = channelId | ||
| 19 | + } | ||
| 20 | +} |
288 Bytes
| 1 | +{ | ||
| 2 | + "code": "0", | ||
| 3 | + "data": [ | ||
| 4 | + { | ||
| 5 | + "activityExt": null, | ||
| 6 | + "appStyle": "11", | ||
| 7 | + "askInfo": null, | ||
| 8 | + "axisColor": "", | ||
| 9 | + "bestNoticer": null, | ||
| 10 | + "bottomNavId": null, | ||
| 11 | + "cardItemId": "", | ||
| 12 | + "channelId": 2029, | ||
| 13 | + "commentInfo": null, | ||
| 14 | + "corner": "", | ||
| 15 | + "coverSize": "", | ||
| 16 | + "coverType": null, | ||
| 17 | + "coverUrl": "", | ||
| 18 | + "expIds": "105", | ||
| 19 | + "extra": "", | ||
| 20 | + "fullColumnImgUrls": [ | ||
| 21 | + | ||
| 22 | + ], | ||
| 23 | + "hasMore": null, | ||
| 24 | + "itemId": "500005310685_article_r", | ||
| 25 | + "itemType": "", | ||
| 26 | + "itemTypeCode": "article", | ||
| 27 | + "keyArticle": 0, | ||
| 28 | + "landscape": null, | ||
| 29 | + "likeStyle": null, | ||
| 30 | + "linkUrl": "", | ||
| 31 | + "liveInfo": null, | ||
| 32 | + "menuShow": 1, | ||
| 33 | + "newTags": "", | ||
| 34 | + "newsAuthor": "", | ||
| 35 | + "newsSubTitle": "", | ||
| 36 | + "newsSummary": "", | ||
| 37 | + "newsTitle": "2024天津·宝坻体育旅游嘉年华活动启动", | ||
| 38 | + "newsTitleColor": "", | ||
| 39 | + "objectId": "30044378753", | ||
| 40 | + "objectLevel": "", | ||
| 41 | + "objectType": "8", | ||
| 42 | + "openComment": null, | ||
| 43 | + "openLikes": null, | ||
| 44 | + "pageId": "", | ||
| 45 | + "photoNum": null, | ||
| 46 | + "position": null, | ||
| 47 | + "productNum": null, | ||
| 48 | + "publishTime": "1713145459000", | ||
| 49 | + "pushTime": null, | ||
| 50 | + "pushUnqueId": null, | ||
| 51 | + "readFlag": 0, | ||
| 52 | + "recommend": 1, | ||
| 53 | + "relId": 500005310685, | ||
| 54 | + "relObjectId": "2029", | ||
| 55 | + "relType": 1, | ||
| 56 | + "rmhInfo": null, | ||
| 57 | + "rmhPlatform": 0, | ||
| 58 | + "sceneId": "54", | ||
| 59 | + "shareInfo": null, | ||
| 60 | + "slideShows": [ | ||
| 61 | + | ||
| 62 | + ], | ||
| 63 | + "sortValue": null, | ||
| 64 | + "source": "人民日报客户端天津频道", | ||
| 65 | + "subObjectType": "", | ||
| 66 | + "subSceneId": "", | ||
| 67 | + "tagIds": [ | ||
| 68 | + | ||
| 69 | + ], | ||
| 70 | + "tagWord": null, | ||
| 71 | + "titleShow": null, | ||
| 72 | + "titleShowPolicy": null, | ||
| 73 | + "topicTemplate": null, | ||
| 74 | + "traceId": "a20b09c58479b22f-500005310685_article_r", | ||
| 75 | + "traceInfo": "", | ||
| 76 | + "userInfo": null, | ||
| 77 | + "videoInfo": null, | ||
| 78 | + "visitorComment": 1, | ||
| 79 | + "voiceInfo": null | ||
| 80 | + }, | ||
| 81 | + { | ||
| 82 | + "activityExt": null, | ||
| 83 | + "appStyle": "11", | ||
| 84 | + "askInfo": null, | ||
| 85 | + "axisColor": "", | ||
| 86 | + "bestNoticer": null, | ||
| 87 | + "bottomNavId": null, | ||
| 88 | + "cardItemId": "", | ||
| 89 | + "channelId": 2032, | ||
| 90 | + "commentInfo": null, | ||
| 91 | + "corner": "", | ||
| 92 | + "coverSize": "", | ||
| 93 | + "coverType": null, | ||
| 94 | + "coverUrl": "", | ||
| 95 | + "expIds": "105", | ||
| 96 | + "extra": "", | ||
| 97 | + "fullColumnImgUrls": [ | ||
| 98 | + | ||
| 99 | + ], | ||
| 100 | + "hasMore": null, | ||
| 101 | + "itemId": "500005305865_article_r", | ||
| 102 | + "itemType": "", | ||
| 103 | + "itemTypeCode": "article", | ||
| 104 | + "keyArticle": 0, | ||
| 105 | + "landscape": null, | ||
| 106 | + "likeStyle": null, | ||
| 107 | + "linkUrl": "", | ||
| 108 | + "liveInfo": null, | ||
| 109 | + "menuShow": 2, | ||
| 110 | + "newTags": "", | ||
| 111 | + "newsAuthor": "", | ||
| 112 | + "newsSubTitle": "", | ||
| 113 | + "newsSummary": "", | ||
| 114 | + "newsTitle": "内蒙古扎赉特旗: “书记项目”添动能 “头雁引领”聚合力", | ||
| 115 | + "newsTitleColor": "", | ||
| 116 | + "objectId": "30044342646", | ||
| 117 | + "objectLevel": "", | ||
| 118 | + "objectType": "8", | ||
| 119 | + "openComment": null, | ||
| 120 | + "openLikes": null, | ||
| 121 | + "pageId": "", | ||
| 122 | + "photoNum": null, | ||
| 123 | + "position": null, | ||
| 124 | + "productNum": null, | ||
| 125 | + "publishTime": "1712913646000", | ||
| 126 | + "pushTime": null, | ||
| 127 | + "pushUnqueId": null, | ||
| 128 | + "readFlag": 0, | ||
| 129 | + "recommend": 1, | ||
| 130 | + "relId": 500005305865, | ||
| 131 | + "relObjectId": "2032", | ||
| 132 | + "relType": 1, | ||
| 133 | + "rmhInfo": null, | ||
| 134 | + "rmhPlatform": 0, | ||
| 135 | + "sceneId": "54", | ||
| 136 | + "shareInfo": null, | ||
| 137 | + "slideShows": [ | ||
| 138 | + | ||
| 139 | + ], | ||
| 140 | + "sortValue": null, | ||
| 141 | + "source": "扎赉特旗融媒体中心", | ||
| 142 | + "subObjectType": "", | ||
| 143 | + "subSceneId": "", | ||
| 144 | + "tagIds": [ | ||
| 145 | + | ||
| 146 | + ], | ||
| 147 | + "tagWord": null, | ||
| 148 | + "titleShow": null, | ||
| 149 | + "titleShowPolicy": null, | ||
| 150 | + "topicTemplate": null, | ||
| 151 | + "traceId": "a20b09c58479b22f-500005305865_article_r", | ||
| 152 | + "traceInfo": "", | ||
| 153 | + "userInfo": null, | ||
| 154 | + "videoInfo": null, | ||
| 155 | + "visitorComment": 1, | ||
| 156 | + "voiceInfo": null | ||
| 157 | + }, | ||
| 158 | + { | ||
| 159 | + "activityExt": null, | ||
| 160 | + "appStyle": "2", | ||
| 161 | + "askInfo": null, | ||
| 162 | + "axisColor": "", | ||
| 163 | + "bestNoticer": null, | ||
| 164 | + "bottomNavId": null, | ||
| 165 | + "cardItemId": "", | ||
| 166 | + "channelId": 2002, | ||
| 167 | + "commentInfo": null, | ||
| 168 | + "corner": "", | ||
| 169 | + "coverSize": "828*466", | ||
| 170 | + "coverType": 1, | ||
| 171 | + "coverUrl": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404141745321527.png?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90", | ||
| 172 | + "expIds": "105", | ||
| 173 | + "extra": "", | ||
| 174 | + "fullColumnImgUrls": [ | ||
| 175 | + { | ||
| 176 | + "format": null, | ||
| 177 | + "fullUrl": "", | ||
| 178 | + "height": 466, | ||
| 179 | + "landscape": 1, | ||
| 180 | + "size": 1, | ||
| 181 | + "url": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404141745321527.png?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90", | ||
| 182 | + "weight": 828 | ||
| 183 | + } | ||
| 184 | + ], | ||
| 185 | + "hasMore": null, | ||
| 186 | + "itemId": "500005310405_video_r", | ||
| 187 | + "itemType": "", | ||
| 188 | + "itemTypeCode": "video", | ||
| 189 | + "keyArticle": 0, | ||
| 190 | + "landscape": null, | ||
| 191 | + "likeStyle": null, | ||
| 192 | + "linkUrl": "", | ||
| 193 | + "liveInfo": null, | ||
| 194 | + "menuShow": 1, | ||
| 195 | + "newTags": "", | ||
| 196 | + "newsAuthor": "", | ||
| 197 | + "newsSubTitle": "", | ||
| 198 | + "newsSummary": "", | ||
| 199 | + "newsTitle": "华丽绚烂!看了洛阳牡丹才知国色天香", | ||
| 200 | + "newsTitleColor": "", | ||
| 201 | + "objectId": "30044374037", | ||
| 202 | + "objectLevel": "", | ||
| 203 | + "objectType": "1", | ||
| 204 | + "openComment": null, | ||
| 205 | + "openLikes": null, | ||
| 206 | + "pageId": "", | ||
| 207 | + "photoNum": null, | ||
| 208 | + "position": null, | ||
| 209 | + "productNum": null, | ||
| 210 | + "publishTime": "1713095130000", | ||
| 211 | + "pushTime": null, | ||
| 212 | + "pushUnqueId": null, | ||
| 213 | + "readFlag": 0, | ||
| 214 | + "recommend": 1, | ||
| 215 | + "relId": 500005310405, | ||
| 216 | + "relObjectId": "2002", | ||
| 217 | + "relType": 1, | ||
| 218 | + "rmhInfo": null, | ||
| 219 | + "rmhPlatform": 0, | ||
| 220 | + "sceneId": "54", | ||
| 221 | + "shareInfo": null, | ||
| 222 | + "slideShows": [ | ||
| 223 | + | ||
| 224 | + ], | ||
| 225 | + "sortValue": null, | ||
| 226 | + "source": "荔枝风景线微博", | ||
| 227 | + "subObjectType": "", | ||
| 228 | + "subSceneId": "", | ||
| 229 | + "tagIds": [ | ||
| 230 | + | ||
| 231 | + ], | ||
| 232 | + "tagWord": null, | ||
| 233 | + "titleShow": null, | ||
| 234 | + "titleShowPolicy": null, | ||
| 235 | + "topicTemplate": null, | ||
| 236 | + "traceId": "a20b09c58479b22f-500005310405_video_r", | ||
| 237 | + "traceInfo": "", | ||
| 238 | + "userInfo": null, | ||
| 239 | + "videoInfo": { | ||
| 240 | + "firstFrameImageUri": "", | ||
| 241 | + "videoDuration": 19, | ||
| 242 | + "videoLandscape": 1, | ||
| 243 | + "videoUrl": "https://rmrbcmsonline.peopleapp.com/upload/video/mp4/202404/17130877420e174c2c6c260ac9.mp4" | ||
| 244 | + }, | ||
| 245 | + "visitorComment": 1, | ||
| 246 | + "voiceInfo": null | ||
| 247 | + }, | ||
| 248 | + { | ||
| 249 | + "activityExt": null, | ||
| 250 | + "appStyle": "13", | ||
| 251 | + "askInfo": null, | ||
| 252 | + "axisColor": "", | ||
| 253 | + "bestNoticer": null, | ||
| 254 | + "bottomNavId": null, | ||
| 255 | + "cardItemId": "", | ||
| 256 | + "channelId": 2002, | ||
| 257 | + "commentInfo": null, | ||
| 258 | + "corner": "", | ||
| 259 | + "coverSize": "619*466", | ||
| 260 | + "coverType": 1, | ||
| 261 | + "coverUrl": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404181712303737.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 262 | + "expIds": "105", | ||
| 263 | + "extra": "", | ||
| 264 | + "fullColumnImgUrls": [ | ||
| 265 | + { | ||
| 266 | + "format": null, | ||
| 267 | + "fullUrl": "", | ||
| 268 | + "height": 466, | ||
| 269 | + "landscape": 1, | ||
| 270 | + "size": 1, | ||
| 271 | + "url": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404181712303737.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 272 | + "weight": 619 | ||
| 273 | + } | ||
| 274 | + ], | ||
| 275 | + "hasMore": null, | ||
| 276 | + "itemId": "500005324157_article_r", | ||
| 277 | + "itemType": "", | ||
| 278 | + "itemTypeCode": "article", | ||
| 279 | + "keyArticle": 0, | ||
| 280 | + "landscape": null, | ||
| 281 | + "likeStyle": null, | ||
| 282 | + "linkUrl": "", | ||
| 283 | + "liveInfo": null, | ||
| 284 | + "menuShow": 2, | ||
| 285 | + "newTags": "", | ||
| 286 | + "newsAuthor": "", | ||
| 287 | + "newsSubTitle": "", | ||
| 288 | + "newsSummary": "祝福“中国天眼”!怀念南老先生!", | ||
| 289 | + "newsTitle": "这超900颗新脉冲星,多希望他能看到啊", | ||
| 290 | + "newsTitleColor": "", | ||
| 291 | + "objectId": "30044454971", | ||
| 292 | + "objectLevel": "", | ||
| 293 | + "objectType": "8", | ||
| 294 | + "openComment": null, | ||
| 295 | + "openLikes": null, | ||
| 296 | + "pageId": "", | ||
| 297 | + "photoNum": null, | ||
| 298 | + "position": null, | ||
| 299 | + "productNum": null, | ||
| 300 | + "publishTime": "1713431569000", | ||
| 301 | + "pushTime": null, | ||
| 302 | + "pushUnqueId": null, | ||
| 303 | + "readFlag": 0, | ||
| 304 | + "recommend": 1, | ||
| 305 | + "relId": 500005324157, | ||
| 306 | + "relObjectId": "2002", | ||
| 307 | + "relType": 1, | ||
| 308 | + "rmhInfo": null, | ||
| 309 | + "rmhPlatform": 0, | ||
| 310 | + "sceneId": "54", | ||
| 311 | + "shareInfo": null, | ||
| 312 | + "slideShows": [ | ||
| 313 | + | ||
| 314 | + ], | ||
| 315 | + "sortValue": null, | ||
| 316 | + "source": "新华社微信公号", | ||
| 317 | + "subObjectType": "", | ||
| 318 | + "subSceneId": "", | ||
| 319 | + "tagIds": [ | ||
| 320 | + | ||
| 321 | + ], | ||
| 322 | + "tagWord": null, | ||
| 323 | + "titleShow": null, | ||
| 324 | + "titleShowPolicy": null, | ||
| 325 | + "topicTemplate": null, | ||
| 326 | + "traceId": "a20b09c58479b22f-500005324157_article_r", | ||
| 327 | + "traceInfo": "", | ||
| 328 | + "userInfo": null, | ||
| 329 | + "videoInfo": null, | ||
| 330 | + "visitorComment": 1, | ||
| 331 | + "voiceInfo": null | ||
| 332 | + }, | ||
| 333 | + { | ||
| 334 | + "activityExt": null, | ||
| 335 | + "appStyle": "13", | ||
| 336 | + "askInfo": null, | ||
| 337 | + "axisColor": "", | ||
| 338 | + "bestNoticer": null, | ||
| 339 | + "bottomNavId": null, | ||
| 340 | + "cardItemId": "", | ||
| 341 | + "channelId": 2037, | ||
| 342 | + "commentInfo": null, | ||
| 343 | + "corner": "", | ||
| 344 | + "coverSize": "700*525", | ||
| 345 | + "coverType": 1, | ||
| 346 | + "coverUrl": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404181118592822.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 347 | + "expIds": "105", | ||
| 348 | + "extra": "", | ||
| 349 | + "fullColumnImgUrls": [ | ||
| 350 | + { | ||
| 351 | + "format": null, | ||
| 352 | + "fullUrl": "", | ||
| 353 | + "height": 525, | ||
| 354 | + "landscape": 1, | ||
| 355 | + "size": 1, | ||
| 356 | + "url": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404181118592822.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 357 | + "weight": 700 | ||
| 358 | + } | ||
| 359 | + ], | ||
| 360 | + "hasMore": null, | ||
| 361 | + "itemId": "500005322754_article_r", | ||
| 362 | + "itemType": "", | ||
| 363 | + "itemTypeCode": "article", | ||
| 364 | + "keyArticle": 0, | ||
| 365 | + "landscape": null, | ||
| 366 | + "likeStyle": null, | ||
| 367 | + "linkUrl": "", | ||
| 368 | + "liveInfo": null, | ||
| 369 | + "menuShow": 1, | ||
| 370 | + "newTags": "", | ||
| 371 | + "newsAuthor": "", | ||
| 372 | + "newsSubTitle": "", | ||
| 373 | + "newsSummary": "", | ||
| 374 | + "newsTitle": "神舟十八号船箭组合体转运至发射区 计划近日择机实施发射", | ||
| 375 | + "newsTitleColor": "", | ||
| 376 | + "objectId": "30044447518", | ||
| 377 | + "objectLevel": "", | ||
| 378 | + "objectType": "8", | ||
| 379 | + "openComment": null, | ||
| 380 | + "openLikes": null, | ||
| 381 | + "pageId": "", | ||
| 382 | + "photoNum": null, | ||
| 383 | + "position": null, | ||
| 384 | + "productNum": null, | ||
| 385 | + "publishTime": "1713433480000", | ||
| 386 | + "pushTime": null, | ||
| 387 | + "pushUnqueId": null, | ||
| 388 | + "readFlag": 0, | ||
| 389 | + "recommend": 1, | ||
| 390 | + "relId": 500005322754, | ||
| 391 | + "relObjectId": "2037", | ||
| 392 | + "relType": 1, | ||
| 393 | + "rmhInfo": null, | ||
| 394 | + "rmhPlatform": 0, | ||
| 395 | + "sceneId": "54", | ||
| 396 | + "shareInfo": null, | ||
| 397 | + "slideShows": [ | ||
| 398 | + | ||
| 399 | + ], | ||
| 400 | + "sortValue": null, | ||
| 401 | + "source": "人民日报客户端", | ||
| 402 | + "subObjectType": "", | ||
| 403 | + "subSceneId": "", | ||
| 404 | + "tagIds": [ | ||
| 405 | + | ||
| 406 | + ], | ||
| 407 | + "tagWord": null, | ||
| 408 | + "titleShow": null, | ||
| 409 | + "titleShowPolicy": null, | ||
| 410 | + "topicTemplate": null, | ||
| 411 | + "traceId": "a20b09c58479b22f-500005322754_article_r", | ||
| 412 | + "traceInfo": "", | ||
| 413 | + "userInfo": null, | ||
| 414 | + "videoInfo": null, | ||
| 415 | + "visitorComment": 1, | ||
| 416 | + "voiceInfo": null | ||
| 417 | + }, | ||
| 418 | + { | ||
| 419 | + "activityExt": null, | ||
| 420 | + "appStyle": "13", | ||
| 421 | + "askInfo": null, | ||
| 422 | + "axisColor": "", | ||
| 423 | + "bestNoticer": null, | ||
| 424 | + "bottomNavId": null, | ||
| 425 | + "cardItemId": "", | ||
| 426 | + "channelId": 2050, | ||
| 427 | + "commentInfo": null, | ||
| 428 | + "corner": "", | ||
| 429 | + "coverSize": "619*466", | ||
| 430 | + "coverType": 1, | ||
| 431 | + "coverUrl": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404121822152009.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 432 | + "expIds": "105", | ||
| 433 | + "extra": "", | ||
| 434 | + "fullColumnImgUrls": [ | ||
| 435 | + { | ||
| 436 | + "format": null, | ||
| 437 | + "fullUrl": "", | ||
| 438 | + "height": 466, | ||
| 439 | + "landscape": 1, | ||
| 440 | + "size": 1, | ||
| 441 | + "url": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404121822152009.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 442 | + "weight": 619 | ||
| 443 | + } | ||
| 444 | + ], | ||
| 445 | + "hasMore": null, | ||
| 446 | + "itemId": "500005306852_article_r", | ||
| 447 | + "itemType": "", | ||
| 448 | + "itemTypeCode": "article", | ||
| 449 | + "keyArticle": 0, | ||
| 450 | + "landscape": null, | ||
| 451 | + "likeStyle": null, | ||
| 452 | + "linkUrl": "", | ||
| 453 | + "liveInfo": null, | ||
| 454 | + "menuShow": 1, | ||
| 455 | + "newTags": "", | ||
| 456 | + "newsAuthor": "", | ||
| 457 | + "newsSubTitle": "", | ||
| 458 | + "newsSummary": "", | ||
| 459 | + "newsTitle": "罕见!贵州梵净山再现“佛光”奇观", | ||
| 460 | + "newsTitleColor": "", | ||
| 461 | + "objectId": "30044345083", | ||
| 462 | + "objectLevel": "", | ||
| 463 | + "objectType": "8", | ||
| 464 | + "openComment": null, | ||
| 465 | + "openLikes": null, | ||
| 466 | + "pageId": "", | ||
| 467 | + "photoNum": null, | ||
| 468 | + "position": null, | ||
| 469 | + "productNum": null, | ||
| 470 | + "publishTime": "1712934235000", | ||
| 471 | + "pushTime": null, | ||
| 472 | + "pushUnqueId": null, | ||
| 473 | + "readFlag": 0, | ||
| 474 | + "recommend": 1, | ||
| 475 | + "relId": 500005306852, | ||
| 476 | + "relObjectId": "2050", | ||
| 477 | + "relType": 1, | ||
| 478 | + "rmhInfo": null, | ||
| 479 | + "rmhPlatform": 0, | ||
| 480 | + "sceneId": "54", | ||
| 481 | + "shareInfo": null, | ||
| 482 | + "slideShows": [ | ||
| 483 | + | ||
| 484 | + ], | ||
| 485 | + "sortValue": null, | ||
| 486 | + "source": "微铜仁", | ||
| 487 | + "subObjectType": "", | ||
| 488 | + "subSceneId": "", | ||
| 489 | + "tagIds": [ | ||
| 490 | + | ||
| 491 | + ], | ||
| 492 | + "tagWord": null, | ||
| 493 | + "titleShow": null, | ||
| 494 | + "titleShowPolicy": null, | ||
| 495 | + "topicTemplate": null, | ||
| 496 | + "traceId": "a20b09c58479b22f-500005306852_article_r", | ||
| 497 | + "traceInfo": "", | ||
| 498 | + "userInfo": null, | ||
| 499 | + "videoInfo": null, | ||
| 500 | + "visitorComment": 1, | ||
| 501 | + "voiceInfo": null | ||
| 502 | + }, | ||
| 503 | + { | ||
| 504 | + "activityExt": null, | ||
| 505 | + "appStyle": "13", | ||
| 506 | + "askInfo": null, | ||
| 507 | + "axisColor": "", | ||
| 508 | + "bestNoticer": null, | ||
| 509 | + "bottomNavId": null, | ||
| 510 | + "cardItemId": "", | ||
| 511 | + "channelId": 2028, | ||
| 512 | + "commentInfo": null, | ||
| 513 | + "corner": "", | ||
| 514 | + "coverSize": "1103*621", | ||
| 515 | + "coverType": 1, | ||
| 516 | + "coverUrl": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/rmrb_58921713104730.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 517 | + "expIds": "105", | ||
| 518 | + "extra": "", | ||
| 519 | + "fullColumnImgUrls": [ | ||
| 520 | + { | ||
| 521 | + "format": null, | ||
| 522 | + "fullUrl": "", | ||
| 523 | + "height": 621, | ||
| 524 | + "landscape": 1, | ||
| 525 | + "size": 1, | ||
| 526 | + "url": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/rmrb_58921713104730.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 527 | + "weight": 1103 | ||
| 528 | + } | ||
| 529 | + ], | ||
| 530 | + "hasMore": null, | ||
| 531 | + "itemId": "500005310563_article_r", | ||
| 532 | + "itemType": "", | ||
| 533 | + "itemTypeCode": "article", | ||
| 534 | + "keyArticle": 0, | ||
| 535 | + "landscape": null, | ||
| 536 | + "likeStyle": null, | ||
| 537 | + "linkUrl": "", | ||
| 538 | + "liveInfo": null, | ||
| 539 | + "menuShow": 2, | ||
| 540 | + "newTags": "", | ||
| 541 | + "newsAuthor": "", | ||
| 542 | + "newsSubTitle": "", | ||
| 543 | + "newsSummary": "", | ||
| 544 | + "newsTitle": "行知读书会分享松江方塔园背后的故事", | ||
| 545 | + "newsTitleColor": "", | ||
| 546 | + "objectId": "30044377688", | ||
| 547 | + "objectLevel": "", | ||
| 548 | + "objectType": "8", | ||
| 549 | + "openComment": null, | ||
| 550 | + "openLikes": null, | ||
| 551 | + "pageId": "", | ||
| 552 | + "photoNum": null, | ||
| 553 | + "position": null, | ||
| 554 | + "productNum": null, | ||
| 555 | + "publishTime": "1713108215000", | ||
| 556 | + "pushTime": null, | ||
| 557 | + "pushUnqueId": null, | ||
| 558 | + "readFlag": 0, | ||
| 559 | + "recommend": 1, | ||
| 560 | + "relId": 500005310563, | ||
| 561 | + "relObjectId": "2028", | ||
| 562 | + "relType": 1, | ||
| 563 | + "rmhInfo": null, | ||
| 564 | + "rmhPlatform": 0, | ||
| 565 | + "sceneId": "54", | ||
| 566 | + "shareInfo": null, | ||
| 567 | + "slideShows": [ | ||
| 568 | + | ||
| 569 | + ], | ||
| 570 | + "sortValue": null, | ||
| 571 | + "source": "人民日报客户端上海频道", | ||
| 572 | + "subObjectType": "", | ||
| 573 | + "subSceneId": "", | ||
| 574 | + "tagIds": [ | ||
| 575 | + | ||
| 576 | + ], | ||
| 577 | + "tagWord": null, | ||
| 578 | + "titleShow": null, | ||
| 579 | + "titleShowPolicy": null, | ||
| 580 | + "topicTemplate": null, | ||
| 581 | + "traceId": "a20b09c58479b22f-500005310563_article_r", | ||
| 582 | + "traceInfo": "", | ||
| 583 | + "userInfo": null, | ||
| 584 | + "videoInfo": null, | ||
| 585 | + "visitorComment": 1, | ||
| 586 | + "voiceInfo": null | ||
| 587 | + }, | ||
| 588 | + { | ||
| 589 | + "activityExt": null, | ||
| 590 | + "appStyle": "13", | ||
| 591 | + "askInfo": null, | ||
| 592 | + "axisColor": "", | ||
| 593 | + "bestNoticer": null, | ||
| 594 | + "bottomNavId": null, | ||
| 595 | + "cardItemId": "", | ||
| 596 | + "channelId": 2002, | ||
| 597 | + "commentInfo": null, | ||
| 598 | + "corner": "", | ||
| 599 | + "coverSize": "619*466", | ||
| 600 | + "coverType": 1, | ||
| 601 | + "coverUrl": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404220932238253.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 602 | + "expIds": "105", | ||
| 603 | + "extra": "", | ||
| 604 | + "fullColumnImgUrls": [ | ||
| 605 | + { | ||
| 606 | + "format": null, | ||
| 607 | + "fullUrl": "", | ||
| 608 | + "height": 466, | ||
| 609 | + "landscape": 1, | ||
| 610 | + "size": 1, | ||
| 611 | + "url": "https://rmrbcmsonline.peopleapp.com/upload/image/202404/202404220932238253.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 612 | + "weight": 619 | ||
| 613 | + } | ||
| 614 | + ], | ||
| 615 | + "hasMore": null, | ||
| 616 | + "itemId": "500005332338_article_r", | ||
| 617 | + "itemType": "", | ||
| 618 | + "itemTypeCode": "article", | ||
| 619 | + "keyArticle": 0, | ||
| 620 | + "landscape": null, | ||
| 621 | + "likeStyle": null, | ||
| 622 | + "linkUrl": "", | ||
| 623 | + "liveInfo": null, | ||
| 624 | + "menuShow": 2, | ||
| 625 | + "newTags": "", | ||
| 626 | + "newsAuthor": "", | ||
| 627 | + "newsSubTitle": "", | ||
| 628 | + "newsSummary": "送别老人!", | ||
| 629 | + "newsTitle": "93岁南京大屠杀幸存者刘素珍去世", | ||
| 630 | + "newsTitleColor": "", | ||
| 631 | + "objectId": "30044516097", | ||
| 632 | + "objectLevel": "", | ||
| 633 | + "objectType": "8", | ||
| 634 | + "openComment": null, | ||
| 635 | + "openLikes": null, | ||
| 636 | + "pageId": "", | ||
| 637 | + "photoNum": null, | ||
| 638 | + "position": null, | ||
| 639 | + "productNum": null, | ||
| 640 | + "publishTime": "1713750664000", | ||
| 641 | + "pushTime": null, | ||
| 642 | + "pushUnqueId": null, | ||
| 643 | + "readFlag": 0, | ||
| 644 | + "recommend": 1, | ||
| 645 | + "relId": 500005332338, | ||
| 646 | + "relObjectId": "2002", | ||
| 647 | + "relType": 1, | ||
| 648 | + "rmhInfo": null, | ||
| 649 | + "rmhPlatform": 0, | ||
| 650 | + "sceneId": "54", | ||
| 651 | + "shareInfo": null, | ||
| 652 | + "slideShows": [ | ||
| 653 | + | ||
| 654 | + ], | ||
| 655 | + "sortValue": null, | ||
| 656 | + "source": "侵华日军南京大屠杀遇难同胞纪念馆", | ||
| 657 | + "subObjectType": "", | ||
| 658 | + "subSceneId": "", | ||
| 659 | + "tagIds": [ | ||
| 660 | + | ||
| 661 | + ], | ||
| 662 | + "tagWord": null, | ||
| 663 | + "titleShow": null, | ||
| 664 | + "titleShowPolicy": null, | ||
| 665 | + "topicTemplate": null, | ||
| 666 | + "traceId": "a20b09c58479b22f-500005332338_article_r", | ||
| 667 | + "traceInfo": "", | ||
| 668 | + "userInfo": null, | ||
| 669 | + "videoInfo": null, | ||
| 670 | + "visitorComment": 1, | ||
| 671 | + "voiceInfo": null | ||
| 672 | + }, | ||
| 673 | + { | ||
| 674 | + "activityExt": null, | ||
| 675 | + "appStyle": "11", | ||
| 676 | + "askInfo": null, | ||
| 677 | + "axisColor": "", | ||
| 678 | + "bestNoticer": null, | ||
| 679 | + "bottomNavId": null, | ||
| 680 | + "cardItemId": "", | ||
| 681 | + "channelId": 2037, | ||
| 682 | + "commentInfo": null, | ||
| 683 | + "corner": "", | ||
| 684 | + "coverSize": "", | ||
| 685 | + "coverType": null, | ||
| 686 | + "coverUrl": "", | ||
| 687 | + "expIds": "105", | ||
| 688 | + "extra": "", | ||
| 689 | + "fullColumnImgUrls": [ | ||
| 690 | + | ||
| 691 | + ], | ||
| 692 | + "hasMore": null, | ||
| 693 | + "itemId": "500005320193_article_r", | ||
| 694 | + "itemType": "", | ||
| 695 | + "itemTypeCode": "article", | ||
| 696 | + "keyArticle": 0, | ||
| 697 | + "landscape": null, | ||
| 698 | + "likeStyle": null, | ||
| 699 | + "linkUrl": "", | ||
| 700 | + "liveInfo": null, | ||
| 701 | + "menuShow": 2, | ||
| 702 | + "newTags": "", | ||
| 703 | + "newsAuthor": "", | ||
| 704 | + "newsSubTitle": "", | ||
| 705 | + "newsSummary": "", | ||
| 706 | + "newsTitle": "高能级科创平台如何赋能衢州高质量发展?这些成果令人瞩目", | ||
| 707 | + "newsTitleColor": "", | ||
| 708 | + "objectId": "30044430493", | ||
| 709 | + "objectLevel": "", | ||
| 710 | + "objectType": "8", | ||
| 711 | + "openComment": null, | ||
| 712 | + "openLikes": null, | ||
| 713 | + "pageId": "", | ||
| 714 | + "photoNum": null, | ||
| 715 | + "position": null, | ||
| 716 | + "productNum": null, | ||
| 717 | + "publishTime": "1713339049000", | ||
| 718 | + "pushTime": null, | ||
| 719 | + "pushUnqueId": null, | ||
| 720 | + "readFlag": 0, | ||
| 721 | + "recommend": 1, | ||
| 722 | + "relId": 500005320193, | ||
| 723 | + "relObjectId": "2037", | ||
| 724 | + "relType": 1, | ||
| 725 | + "rmhInfo": null, | ||
| 726 | + "rmhPlatform": 0, | ||
| 727 | + "sceneId": "54", | ||
| 728 | + "shareInfo": null, | ||
| 729 | + "slideShows": [ | ||
| 730 | + | ||
| 731 | + ], | ||
| 732 | + "sortValue": null, | ||
| 733 | + "source": "人民日报客户端浙江频道", | ||
| 734 | + "subObjectType": "", | ||
| 735 | + "subSceneId": "", | ||
| 736 | + "tagIds": [ | ||
| 737 | + | ||
| 738 | + ], | ||
| 739 | + "tagWord": null, | ||
| 740 | + "titleShow": null, | ||
| 741 | + "titleShowPolicy": null, | ||
| 742 | + "topicTemplate": null, | ||
| 743 | + "traceId": "a20b09c58479b22f-500005320193_article_r", | ||
| 744 | + "traceInfo": "", | ||
| 745 | + "userInfo": null, | ||
| 746 | + "videoInfo": null, | ||
| 747 | + "visitorComment": 1, | ||
| 748 | + "voiceInfo": null | ||
| 749 | + }, | ||
| 750 | + { | ||
| 751 | + "activityExt": null, | ||
| 752 | + "appStyle": "13", | ||
| 753 | + "askInfo": null, | ||
| 754 | + "axisColor": "", | ||
| 755 | + "bestNoticer": null, | ||
| 756 | + "bottomNavId": null, | ||
| 757 | + "cardItemId": "", | ||
| 758 | + "channelId": 2037, | ||
| 759 | + "commentInfo": null, | ||
| 760 | + "corner": "", | ||
| 761 | + "coverSize": "600*400", | ||
| 762 | + "coverType": 1, | ||
| 763 | + "coverUrl": "https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240417/a_965028022405033985.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 764 | + "expIds": "105", | ||
| 765 | + "extra": "", | ||
| 766 | + "fullColumnImgUrls": [ | ||
| 767 | + { | ||
| 768 | + "format": null, | ||
| 769 | + "fullUrl": "", | ||
| 770 | + "height": 400, | ||
| 771 | + "landscape": 1, | ||
| 772 | + "size": 1, | ||
| 773 | + "url": "https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240417/a_965028022405033985.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90", | ||
| 774 | + "weight": 600 | ||
| 775 | + } | ||
| 776 | + ], | ||
| 777 | + "hasMore": null, | ||
| 778 | + "itemId": "500005318711_article_r", | ||
| 779 | + "itemType": "", | ||
| 780 | + "itemTypeCode": "article", | ||
| 781 | + "keyArticle": 0, | ||
| 782 | + "landscape": null, | ||
| 783 | + "likeStyle": null, | ||
| 784 | + "linkUrl": "", | ||
| 785 | + "liveInfo": null, | ||
| 786 | + "menuShow": 2, | ||
| 787 | + "newTags": "", | ||
| 788 | + "newsAuthor": "", | ||
| 789 | + "newsSubTitle": "", | ||
| 790 | + "newsSummary": "", | ||
| 791 | + "newsTitle": "增长缘何“超预期”?三个维度读懂", | ||
| 792 | + "newsTitleColor": "", | ||
| 793 | + "objectId": "30044422916", | ||
| 794 | + "objectLevel": "", | ||
| 795 | + "objectType": "8", | ||
| 796 | + "openComment": null, | ||
| 797 | + "openLikes": null, | ||
| 798 | + "pageId": "", | ||
| 799 | + "photoNum": null, | ||
| 800 | + "position": null, | ||
| 801 | + "productNum": null, | ||
| 802 | + "publishTime": "1713319371000", | ||
| 803 | + "pushTime": null, | ||
| 804 | + "pushUnqueId": null, | ||
| 805 | + "readFlag": 0, | ||
| 806 | + "recommend": 1, | ||
| 807 | + "relId": 500005318711, | ||
| 808 | + "relObjectId": "2037", | ||
| 809 | + "relType": 1, | ||
| 810 | + "rmhInfo": null, | ||
| 811 | + "rmhPlatform": 0, | ||
| 812 | + "sceneId": "54", | ||
| 813 | + "shareInfo": null, | ||
| 814 | + "slideShows": [ | ||
| 815 | + | ||
| 816 | + ], | ||
| 817 | + "sortValue": null, | ||
| 818 | + "source": "央视新闻客户端", | ||
| 819 | + "subObjectType": "", | ||
| 820 | + "subSceneId": "", | ||
| 821 | + "tagIds": [ | ||
| 822 | + | ||
| 823 | + ], | ||
| 824 | + "tagWord": null, | ||
| 825 | + "titleShow": null, | ||
| 826 | + "titleShowPolicy": null, | ||
| 827 | + "topicTemplate": null, | ||
| 828 | + "traceId": "a20b09c58479b22f-500005318711_article_r", | ||
| 829 | + "traceInfo": "", | ||
| 830 | + "userInfo": null, | ||
| 831 | + "videoInfo": null, | ||
| 832 | + "visitorComment": 1, | ||
| 833 | + "voiceInfo": null | ||
| 834 | + } | ||
| 835 | + ], | ||
| 836 | + "message": "Success", | ||
| 837 | + "meta": null, | ||
| 838 | + "requestId": "", | ||
| 839 | + "success": true, | ||
| 840 | + "timestamp": 1713752234695 | ||
| 841 | +} |
-
Please register or login to post a comment