Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
wangliang_wd
2024-03-25 17:14:51 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
12b4df4d596254950649af6b790b51b60963b9ad
12b4df4d
1 parent
4bc46675
feat:优化浏览历史
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
3981 additions
and
139 deletions
sight_harmony/commons/wdRouter/src/main/ets/router/WDRouterPage.ets
sight_harmony/features/wdComponent/src/main/ets/components/mine/MinePagePersonFunctionUI.ets
sight_harmony/features/wdComponent/src/main/ets/components/page/BrowsingHistoryPage.ets
sight_harmony/features/wdComponent/src/main/ets/components/page/MyCollectionListPage.ets
sight_harmony/features/wdComponent/src/main/ets/viewmodel/MyCollectionViewModel.ets
sight_harmony/features/wdComponent/src/main/resources/base/profile/main_pages.json
sight_harmony/products/phone/src/main/resources/rawfile/MyCollection_list_data.json
sight_harmony/products/phone/src/main/resources/rawfile/browsingHistory_list_data.json
sight_harmony/commons/wdRouter/src/main/ets/router/WDRouterPage.ets
View file @
12b4df4
...
...
@@ -46,6 +46,9 @@ export class WDRouterPage {
static editUserNikeNamePage = new WDRouterPage("wdComponent", "ets/components/page/EditUserNikeNamePage");
//修改简介
static editUserIntroductionPage = new WDRouterPage("wdComponent", "ets/components/page/EditUserIntroductionPage");
//浏览历史
static browsingHistoryPage = new WDRouterPage("wdComponent", "ets/components/page/BrowsingHistoryPage");
//我的收藏
static myCollectionListPagePage = new WDRouterPage("wdComponent", "ets/components/page/MyCollectionListPage");
static loginProtocolPage = new WDRouterPage("wdLogin", "ets/pages/login/LoginProtocolWebview");
}
...
...
sight_harmony/features/wdComponent/src/main/ets/components/mine/MinePagePersonFunctionUI.ets
View file @
12b4df4
...
...
@@ -45,7 +45,11 @@ export default struct MinePagePersonFunctionUI {
break;
}
case "收藏":{
WDRouterRule.jumpWithPage(WDRouterPage.editUserInfoPage)
WDRouterRule.jumpWithPage(WDRouterPage.myCollectionListPagePage)
break;
}
case "历史":{
WDRouterRule.jumpWithPage(WDRouterPage.browsingHistoryPage)
break;
}
}
...
...
sight_harmony/features/wdComponent/src/main/ets/components/page/BrowsingHistoryPage.ets
View file @
12b4df4
import { ResourcesUtils } from 'wdKit'
import { ResponseDTO } from 'wdNetwork'
import { MyCollectionModel } from '../../model/MyCollectionModel'
import { CustomTitleUI } from '../reusable/CustomTitleUI'
import MyCollectionViewModel from '../../viewmodel/MyCollectionViewModel';
import PageModel from '../../viewmodel/PageModel';
import { CommonConstants, ViewType } from 'wdConstant'
import { EmptyComponent } from '../view/EmptyComponent'
import { ErrorComponent } from '../view/ErrorComponent'
import RefreshLayout from './RefreshLayout'
import { RefreshLayoutBean } from './RefreshLayoutBean';
import { CompDTO } from 'wdBean'
import LoadMoreLayout from './LoadMoreLayout'
import NoMoreLayout from './NoMoreLayout'
import { CompParser } from '../CompParser'
import CustomRefreshLoadLayout from './CustomRefreshLoadLayout';
import { listTouchEvent } from '../../utils/PullDownRefresh';
@Entry
@Component
struct BrowsingHistoryPage {
private browsingHistoryList:MyCollectionModel[] = []
@State private browSingModel: PageModel = new PageModel()
aboutToAppear(){
ResourcesUtils.getResourcesJson<ResponseDTO<MyCollectionModel[]>>(getContext(this),'browsingHistory_list_data.json').then((success)=>{
success.data?.forEach(element => {
this.browsingHistoryList.push(element)
});
console.log("ycg",this.browsingHistoryList.length.toString());
})
// this.getData()
}
build() {
Column(){
CustomTitleUI({titleName:'浏览历史'})
List({}){
ForEach(
this.browsingHistoryList,
(item: MyCollectionModel) =>{
ListItem(){
this.HistoryItem(item)
}
}
)
if (this.browSingModel.viewType == ViewType.LOADING){
this.LoadingLayout()
}else if(this.browSingModel.viewType == ViewType.ERROR){
ErrorComponent()
}else if(this.browSingModel.viewType == ViewType.EMPTY){
EmptyComponent()
}else {
this.ListLayout()
}
}
.height('100%')
.width(CommonConstants.FULL_WIDTH)
.height(CommonConstants.FULL_HEIGHT)
.onTouch((event: TouchEvent | undefined) => {
if (event) {
if (this.browSingModel.viewType === ViewType.LOADED) {
listTouchEvent(this.browSingModel, event);
}
}
})
}
@Builder
HistoryItem(item: MyCollectionModel){
Column(){
Row(){
Column(){
Text('就像是一场不断升级的权亡。')
.maxLines(3)
Text('2024-03-14')
.margin({top:10,bottom:0})
}
.width('60%')
.alignItems(HorizontalAlign.Start)
@Builder ListLayout() {
List() {
// 下拉刷新
ListItem() {
RefreshLayout({
refreshBean: new RefreshLayoutBean(this.browSingModel.isVisiblePullDown, this.browSingModel.pullDownRefreshImage,
this.browSingModel.pullDownRefreshText, this.browSingModel.pullDownRefreshHeight)
})
}
Blank()
LazyForEach(this.browSingModel.compList, (compDTO: CompDTO, compIndex: number) => {
ListItem() {
Column() {
CompParser({ compDTO: compDTO, compIndex: compIndex });
}
}
})
Image('')
.backgroundColor(Color.Orange)
.width('30%')
.height(80)
.margin({top:10})
// 加载更多
ListItem() {
if (this.browSingModel.hasMore) {
LoadMoreLayout({
refreshBean: new RefreshLayoutBean(this.browSingModel.isVisiblePullUpLoad, this.browSingModel.pullUpLoadImage,
this.browSingModel.pullUpLoadText, this.browSingModel.pullUpLoadHeight)
})
} else {
NoMoreLayout()
}
}
Blank()
Divider()
.width('90%')
}
.width('100%')
.height(100)
.height(CommonConstants.FULL_PARENT)
}
@Builder LoadingLayout() {
CustomRefreshLoadLayout({ refreshBean: new RefreshLayoutBean(true,
$r('app.media.ic_pull_up_load'), $r('app.string.pull_up_load_text'), this.browSingModel.pullDownRefreshHeight) })
}
async getData() {
this.browSingModel.currentPage = 1
MyCollectionViewModel.newFetchMyCollectList(2,'1',this.browSingModel.currentPage,getContext(this)).then(pageDto => {
if (pageDto && pageDto.compList && pageDto.compList.length > 0) {
this.browSingModel.viewType = ViewType.LOADED;
this.browSingModel.compList.push(...pageDto.compList)
if (pageDto.compList.length === this.browSingModel.pageSize) {
this.browSingModel.currentPage++;
this.browSingModel.hasMore = true;
} else {
this.browSingModel.hasMore = false;
}
} else {
this.browSingModel.viewType = ViewType.EMPTY;
}
})
}
}
\ No newline at end of file
...
...
sight_harmony/features/wdComponent/src/main/ets/components/page/MyCollectionListPage.ets
0 → 100644
View file @
12b4df4
import { CustomTitleUI } from '../reusable/CustomTitleUI'
import MyCollectionViewModel from '../../viewmodel/MyCollectionViewModel';
import PageModel from '../../viewmodel/PageModel';
import { CommonConstants, ViewType } from 'wdConstant'
import { EmptyComponent } from '../view/EmptyComponent'
import { ErrorComponent } from '../view/ErrorComponent'
import RefreshLayout from './RefreshLayout'
import { RefreshLayoutBean } from './RefreshLayoutBean';
import { CompDTO } from 'wdBean'
import LoadMoreLayout from './LoadMoreLayout'
import NoMoreLayout from './NoMoreLayout'
import { CompParser } from '../CompParser'
import CustomRefreshLoadLayout from './CustomRefreshLoadLayout';
@Entry
@Component
struct MyCollectionListPage {
@State private browSingModel: PageModel = new PageModel()
isloading : boolean = false
aboutToAppear(){
// this.getData()
}
build() {
Column(){
CustomTitleUI({titleName:'我的收藏'})
if (this.browSingModel.viewType == ViewType.LOADING){
this.LoadingLayout()
}else if(this.browSingModel.viewType == ViewType.ERROR){
ErrorComponent()
}else if(this.browSingModel.viewType == ViewType.EMPTY){
EmptyComponent()
}else {
this.ListLayout()
}
}
.width(CommonConstants.FULL_WIDTH)
.height(CommonConstants.FULL_HEIGHT)
}
@Builder ListLayout() {
List() {
// 下拉刷新
ListItem() {
RefreshLayout({
refreshBean: new RefreshLayoutBean(this.browSingModel.isVisiblePullDown, this.browSingModel.pullDownRefreshImage,
this.browSingModel.pullDownRefreshText, this.browSingModel.pullDownRefreshHeight)
})
}
LazyForEach(this.browSingModel.compList, (compDTO: CompDTO, compIndex: number) => {
ListItem() {
Column() {
CompParser({ compDTO: compDTO, compIndex: compIndex });
}
}
})
// 加载更多
ListItem() {
if (this.browSingModel.hasMore) {
LoadMoreLayout({
refreshBean: new RefreshLayoutBean(this.browSingModel.isVisiblePullUpLoad, this.browSingModel.pullUpLoadImage,
this.browSingModel.pullUpLoadText, this.browSingModel.pullUpLoadHeight)
})
} else {
NoMoreLayout()
}
}
}
.height(CommonConstants.FULL_PARENT)
}
@Builder LoadingLayout() {
CustomRefreshLoadLayout({ refreshBean: new RefreshLayoutBean(true,
$r('app.media.ic_pull_up_load'), $r('app.string.pull_up_load_text'), this.browSingModel.pullDownRefreshHeight) })
}
async getData() {
this.browSingModel.currentPage = 1
MyCollectionViewModel.newFetchMyCollectList(1,'1',this.browSingModel.currentPage,getContext(this)).then(pageDto => {
if (pageDto && pageDto.compList && pageDto.compList.length > 0) {
this.browSingModel.viewType = ViewType.LOADED;
this.browSingModel.compList.push(...pageDto.compList)
if (pageDto.compList.length === this.browSingModel.pageSize) {
this.browSingModel.currentPage++;
this.browSingModel.hasMore = true;
} else {
this.browSingModel.hasMore = false;
}
} else {
this.browSingModel.viewType = ViewType.EMPTY;
}
})
}
}
\ No newline at end of file
...
...
sight_harmony/features/wdComponent/src/main/ets/viewmodel/MyCollectionViewModel.ets
View file @
12b4df4
import { MyCollectionListModel } from '../model/MyCollectionModel';
import HashMap from '@ohos.util.HashMap';
import { HttpUrlUtils, ResponseDTO, WDHttp } from 'wdNetwork';
import { Logger } from 'wdKit';
import { Logger, ResourcesUtils } from 'wdKit';
import { PageDTO } from 'wdBean';
const TAG = "MyCollectionViewModel"
...
...
@@ -28,22 +29,77 @@ class MyCollectionViewModel {
return WDHttp.get<ResponseDTO<MyCollectionListModel>>(url, headers)
}
async getAppointmentListDataLocal(context: Context): Promise<MyCollectionListModel> {
Logger.info(TAG, `getBottomNavDataMock start`);
let compRes: ResponseDTO<MyCollectionListModel> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<MyCollectionListModel>>(context,'browsingHistory_list_data.json' );
if (!compRes || !compRes.data) {
Logger.info(TAG, `getAppointmentListDataLocal compRes is empty`);
return new MyCollectionListModel()
}
Logger.info(TAG, `getAppointmentListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);
return compRes.data
}
//Type 1 收藏 2 浏览历史
//tagId 收藏界面 标签筛选
fetchMyCollectList(type:number,tagId:string,pageNum:string):Promise<MyCollectionListModel>{
fetchMyCollectList(type:number,tagId:string,pageNum:string
,context: Context
):Promise<MyCollectionListModel>{
return new Promise<MyCollectionListModel>((success,error) => {
this.BaseGetRequest(type,tagId,pageNum).then((navResDTO: ResponseDTO<MyCollectionListModel>) => {
if (navResDTO) {
let listData = navResDTO.data as MyCollectionListModel
success(listData)
}else{
Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
error("page data invalid");
if (!navResDTO || navResDTO.code != 0) {
success(this.getAppointmentListDataLocal(context))
return
}
Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
let listData = navResDTO.data as MyCollectionListModel
success(listData)
}).catch((err: Error) => {
Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
error("page data invalid");
})
})
}
}
\ No newline at end of file
newBaseGetRequest(type:number,tagId:string,pageNum:number){
let url = HttpUrlUtils.getMyCollectionListDataUrl()+ `?type=${type}&operateTag=${1}&pageSize=${20}&pageNum=${pageNum.toString()}`
if (tagId.length > 0) {
url = url + `&tagId=${tagId}`
}
let headers: HashMap<string, string> = HttpUrlUtils.getCommonHeaders()
return WDHttp.get<ResponseDTO<PageDTO>>(url, headers)
}
newFetchMyCollectList(type:number,tagId:string,pageNum:number,context: Context):Promise<PageDTO>{
return new Promise<PageDTO>((success,error) => {
success(this.newGetAppointmentListDataLocal(type,context))
return
this.newBaseGetRequest(type,tagId,pageNum).then((navResDTO: ResponseDTO<PageDTO>) => {
if (!navResDTO || navResDTO.code != 0) {
success(this.newGetAppointmentListDataLocal(type,context))
return
}
Logger.info(TAG, "getAppointmentList then,AppointmentResDTO.timeStamp:" + navResDTO.timestamp);
let listData = navResDTO.data as PageDTO
success(listData)
}).catch((err: Error) => {
Logger.error(TAG, `fetchAppointmentListDataApi catch, error.name : ${err.name}, error.message:${err.message}`);
error("page data invalid");
})
})
}
async newGetAppointmentListDataLocal(type:number, context: Context): Promise<PageDTO> {
Logger.info(TAG, `getBottomNavDataMock start`);
let compRes: ResponseDTO<PageDTO> | null = await ResourcesUtils.getResourcesJson<ResponseDTO<PageDTO>>(context,type == 1?'MyCollection_list_data.json':'browsingHistory_list_data.json');
if (!compRes || !compRes.data) {
Logger.info(TAG, `getAppointmentListDataLocal compRes is empty`);
return {} as PageDTO
}
Logger.info(TAG, `getAppointmentListDataLocal getResourcesJsonSync compRes : ${JSON.stringify(compRes)}`);
return compRes.data
}
}
const collectionViewModel = MyCollectionViewModel.getInstance();
export default collectionViewModel as MyCollectionViewModel
\ No newline at end of file
...
...
sight_harmony/features/wdComponent/src/main/resources/base/profile/main_pages.json
View file @
12b4df4
...
...
@@ -5,6 +5,8 @@
"components/page/FollowListPage"
,
"components/page/EditUserInfoPage"
,
"components/page/EditUserNikeNamePage"
,
"components/page/EditUserIntroductionPage"
"components/page/EditUserIntroductionPage"
,
"components/page/BrowsingHistoryPage"
,
"components/page/MyCollectionListPage"
]
}
\ No newline at end of file
...
...
sight_harmony/products/phone/src/main/resources/rawfile/MyCollection_list_data.json
0 → 100644
View file @
12b4df4
{
"code"
:
"0"
,
"data"
:
{
"blockDesc"
:
""
,
"compAdList"
:
[],
"compList"
:
[{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*720"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240325/a_956686135747145731.jpeg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
720
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240325/a_956686135747145731.jpeg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1080
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"把长三角一体化作为最大红利的安徽,该怎么看中部崛起?"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035085014"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711343372000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002816032
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"江淮观察"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"合肥市出台支持安徽科技大市场建设专项政策"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035084966"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711343393000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002816027
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"619*466"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403250847175953.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
466
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403250847175953.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
619
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"上新啦!安徽春茶陆续开采上市"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035084967"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711343382000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002816028
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"安徽日报"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"2"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"2"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1280*720"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/dfff441704e788d1fa5668a9d042b588.jpg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
720
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/dfff441704e788d1fa5668a9d042b588.jpg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90"
,
"weight"
:
1280
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"安徽泾县:一场明制婚礼表演带你领略中国式浪漫"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035081306"
,
"objectLevel"
:
""
,
"objectType"
:
"1"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711324784000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815743
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"泾县融媒体中心"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
{
"firstFrameImageUri"
:
""
,
"videoDuration"
:
28
,
"videoLandscape"
:
1
,
"videoUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/video/mp4/202403/17112859653405ac104284ebd6.mp4"
},
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*810"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240325/a_956685797677854724.jpeg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
810
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240325/a_956685797677854724.jpeg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1080
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"创新赢得“芯”未来"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035085002"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711343394000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002816031
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"池州市传媒中心"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"640*427"
,
"coverType"
:
1
,
"coverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20231215/image/display/e7db5eeb18ab4b56a0cd30580d8767e0.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
427
,
"landscape"
:
1
,
"size"
:
535561
,
"url"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20231215/image/display/e7db5eeb18ab4b56a0cd30580d8767e0.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
640
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"安徽合肥:争当领军人 建功在众兴"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30001373964"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1702865643000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500000008738
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
""
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"561*374"
,
"coverType"
:
1
,
"coverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20231215/image/display/0a1f682414204c8bb1123d102ea187ac.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
374
,
"landscape"
:
null
,
"size"
:
29016
,
"url"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20231215/image/display/0a1f682414204c8bb1123d102ea187ac.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
561
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"合肥持续开展营商环境优化工作"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30001373963"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1703835241000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500000008737
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
""
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*1395"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240325/a_956686455441190912.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
1395
,
"landscape"
:
2
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240325/a_956686455441190912.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1080
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"安徽省教育招生考试院最新发布"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035085057"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711343394000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002816034
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"539*359"
,
"coverType"
:
1
,
"coverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20231010/image/display/e422395435b74b14b09a6ce783ed9095.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
359
,
"landscape"
:
1
,
"size"
:
274066
,
"url"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20231010/image/display/e422395435b74b14b09a6ce783ed9095.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
539
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"2023媒体人评国足表现:确实挺努力的,现在就是细节的处理能不能做好"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30001155429"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1696941247000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500000002152
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"微博"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"500*725"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/rmrb_47631711327429.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
725
,
"landscape"
:
2
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/rmrb_47631711327429.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
500
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"亳州一市民建议登上《人民日报》"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035084910"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711343383000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002816024
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"安徽省2023年度优秀“的哥”名单出炉"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035073426"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250876000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815141
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"Zh_Carousel_Layout-01"
,
"compType"
:
"ZH_CAROUSEL_LAYOUT"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
"{\"autoplay\":0}"
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
7067
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
"轮播卡"
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"2"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
null
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1434*806"
,
"coverType"
:
null
,
"coverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20230915/image/display/58ff2f13195744d6b95f433471f50d1c.cut-pic-3?x-oss-process=image/resize,w_550/quality,q_90/format,jpg"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
"倒计时9天!\n9天后,我们与制造业拥抱!\n9天后,我们与世界相约!\n我们,准备好了!"
,
"newsTitle"
:
"2023世界制造业大会宣传预热片发布"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30001125919"
,
"objectLevel"
:
""
,
"objectType"
:
"1"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1694743933000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
null
,
"relObjectId"
:
""
,
"relType"
:
null
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
2
,
"source"
:
"人民号"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
{
"firstFrameImageUri"
:
""
,
"videoDuration"
:
110
,
"videoLandscape"
:
1
,
"videoUrl"
:
"https://uatjdcdnout.aikan.pdnews.cn/zhbj-20230915/vod/content/output/b63eaeee42294fa8abe88310cb538798_opt.mp4"
},
"visitorComment"
:
0
,
"voiceInfo"
:
null
},
{
"activityExt"
:
null
,
"appStyle"
:
""
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
null
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"220*125"
,
"coverType"
:
1
,
"coverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20240125/image/display/fcf68359e8af445884b7203ed47d330a.jpg?x-oss-process=image/resize,w_550/quality,q_90/format,jpg"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
"https://pd-people-uat.pdnews.cn/h/power/133?hiddenTopNavigation=true"
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"人民号榜单"
,
"newsTitleColor"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectType"
:
"6"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
""
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
null
,
"recommend"
:
null
,
"relId"
:
null
,
"relObjectId"
:
""
,
"relType"
:
null
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
null
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
3
,
"source"
:
""
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
"20048"
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
0
,
"sceneId"
:
""
,
"sortValue"
:
12
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
1
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"安徽淮南发放“2024优质淮品”消费券"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035073393"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250876000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815138
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*517"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956173959257124864.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
517
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956173959257124864.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1080
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"国家这份试点示范项目名单公布!安徽12个项目上榜"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035073470"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250865000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815144
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"今年合肥力争完成大建设千亿投资目标"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035073630"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250851000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815164
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"合肥在线"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"未来学校什么样?安徽一市正在征集“金点子”!"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035073770"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250830000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815177
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"安徽日报"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"329*248"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403240732391891.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
248
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403240732391891.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
329
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"人民日报关注安徽界首旧电池循环利用 | 年产99万吨再生铅从何而来"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035075146"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250829000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815261
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"安徽一市调整住房公积金贷款政策"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035075187"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250819000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815264
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"安庆之声微信公号"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"这一国家级盛会,3月31日将在安徽启动!"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035075181"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711250819000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002815263
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端安徽频道"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
""
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
""
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2038
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*603"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_955969921030811649.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
603
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_955969921030811649.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1080
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"安徽省委书记韩俊:群众的事,真想解决就真能解决"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035066736"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711159363000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002814714
,
"relObjectId"
:
"2038"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报中央厨房-皖高峰工作室"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
0
,
"relId"
:
null
,
"sceneId"
:
""
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
}],
"id"
:
20048
,
"name"
:
""
,
"pageId"
:
""
,
"pageNum"
:
1
,
"pageSize"
:
20
,
"recommend"
:
0
,
"totalCount"
:
32752
},
"message"
:
"Success"
,
"meta"
:
{
"md5"
:
"99c6a1248f6edbac8b813a8cc503a992"
},
"requestId"
:
""
,
"success"
:
true
,
"timestamp"
:
1711354331865
}
\ No newline at end of file
...
...
sight_harmony/products/phone/src/main/resources/rawfile/browsingHistory_list_data.json
View file @
12b4df4
{
"code"
:
"0"
,
"data"
:
{
"hasNext"
:
0
,
"list"
:
[
{
"blockDesc"
:
""
,
"compAdList"
:
[],
"compList"
:
[{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"2"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"30034960827_video"
,
"itemType"
:
""
,
"itemTypeCode"
:
"video"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"国家邮政局:提高快递服务乡村振兴能力水平"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"23"
,
"askInfo"
:
{
"answerContent"
:
"已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复已回复"
,
"askId"
:
60000000430
,
"content"
:
"首先,修路期间道路的封闭和交通拥堵成为了最大的问题。原本通畅的道路在施工期间常常被堵得水泄不通,不仅给市民的出行带来了极大的不便,也影响了周边商户的生意。此外,由于施工期间各种设备和材料的运输需求增加,交通压力也随之增大。\n\n其次,修路期间产生的噪音和环境污染也是一个难以忍受的烦恼。大型机械和运输车辆的轰鸣声、建筑材料加工的噪音以及工人施工的喧闹声,都给居民的生活带来了很大的干扰。同时,由于施工期间各种设备、材料的使用和运输,产生的灰尘、废气等也会对环境造成一定的污染。\n\n再者,修路期间的施工安全问题也令人担忧。由于施工期间道路的不规范和设备的摆放不当,容易导致交通事故的发生。此外,由于施工人员的疏忽大意,也可能引发一些安全隐患。\n\n针对以上问题,我们可以采取以下措施来缓解修路期间的烦恼:\n\n合理规划施工时间和路线,尽量减少对居民生活和商户经营的影响。\n\n加强施工现场的安全管理,确保施工期间的安全。\n\n采取必要的环保措施,减少施工期间对环境的影响。\n\n总之,修路虽然带来了许多烦恼,但也是城市发展所必须面对的问题。只有通过合理的规划和管理,才能最大程度地减少修路期间的各种烦恼,让我们的生活更加便利和舒适。"
,
"domainName"
:
"治安"
,
"forumName"
:
"安徽省合肥市委书记虞爱华"
,
"realAskId"
:
"17050288"
,
"stateInfo"
:
4
,
"typeName"
:
"咨询"
"appStyle"
:
"2"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
null
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*1444"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240315/a_953096729928921088.jpeg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
2
,
"height"
:
1444
,
"landscape"
:
2
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240315/a_953096729928921088.jpeg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90"
,
"weight"
:
1080
}],
"hasMore"
:
null
,
"itemId"
:
"30034960827_video"
,
"itemType"
:
""
,
"itemTypeCode"
:
"video"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
1
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"国家邮政局:提高快递服务乡村振兴能力水平"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30034960827"
,
"objectLevel"
:
""
,
"objectType"
:
"1"
,
"openComment"
:
1
,
"openLikes"
:
1
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1710472163000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
1
,
"relId"
:
null
,
"relObjectId"
:
""
,
"relType"
:
null
,
"rmhInfo"
:
{
"authIcon"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/creator-category/icon/auth/blue.png"
,
"authTitle"
:
"现代物流报"
,
"authTitle2"
:
""
,
"banControl"
:
0
,
"cnIsAttention"
:
1
,
"cnIsComment"
:
1
,
"cnIsLike"
:
1
,
"cnMainControl"
:
1
,
"cnShareControl"
:
1
,
"posterShareControl"
:
1
,
"rmhDesc"
:
"中国物流与采购联合会"
,
"rmhHeadUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn//upload/rmh/image/202401/202401161526206203.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg"
,
"rmhId"
:
4256191
,
"rmhName"
:
"现代物流报"
,
"userId"
:
"513696920020938"
,
"userType"
:
"2"
},
"rmhPlatform"
:
1
,
"sceneId"
:
"189"
,
"shareInfo"
:
{
"shareCoverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240315/a_953096729928921088.jpeg?x-oss-process=image/resize,w_400"
,
"shareOpen"
:
1
,
"sharePosterCoverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240315/a_953096729928921088.jpeg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90&x-oss-process=image/resize,m_fill,h_450,w_800,limit_0/quality,q_90"
,
"sharePosterOpen"
:
0
,
"shareSummary"
:
"国家邮政局:提高快递服务乡村振兴能力水平"
,
"shareTitle"
:
"国家邮政局:提高快递服务乡村振兴能力水平"
,
"shareUrl"
:
"https://pd-people-uat.pdnews.cn/rmhvideo/30034960827"
},
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民号"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-30034960827_video"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
{
"firstFrameImageUri"
:
""
,
"videoDuration"
:
33
,
"videoLandscape"
:
2
,
"videoUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/rmh/video/mp4/202403/1710471972f2a99d2b4bc072d2.mp4"
},
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-30034960827_video"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"2"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"500002815043_pictures_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"pictures"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"0323 图集验证0323 图集验证0323 图集验证0323 图集验证0323"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"2"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
20
62
,
"channelId"
:
20
01
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverSize"
:
"
1600*900
"
,
"coverType"
:
1
,
"coverUrl"
:
"http://testlybcustomer.people.cn/files/attachment/month_2310/202310_b1XKIRsW35n7A3Srz5EeUaLtWnqryjNz_m.jpg"
,
"expIds"
:
""
,
"coverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/zhbj-20240323/image/content/7f06635daecb44a8a807a2edbfe7e5cc.jpeg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[
{
"format"
:
null
,
"height"
:
null
,
"landscape"
:
null
,
"size"
:
null
,
"url"
:
"http://testlybcustomer.people.cn/files/attachment/month_2310/202310_b1XKIRsW35n7A3Srz5EeUaLtWnqryjNz_m.jpg"
,
"weight"
:
null
}
],
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
900
,
"landscape"
:
1
,
"size"
:
437428
,
"url"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/zhbj-20240323/image/content/7f06635daecb44a8a807a2edbfe7e5cc.jpeg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90"
,
"weight"
:
1600
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemId"
:
"
500002815043_pictures_r
"
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"keyArticle"
:
null
,
"itemTypeCode"
:
"pictures"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
1
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"0323 图集验证0323 图集验证0323 图集验证0323 图集验证0323"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035070427"
,
"objectLevel"
:
""
,
"objectType"
:
"9"
,
"openComment"
:
1
,
"openLikes"
:
1
,
"pageId"
:
""
,
"photoNum"
:
3
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711184689000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
1
,
"relId"
:
500002815043
,
"relObjectId"
:
"2001"
,
"relType"
:
1
,
"rmhInfo"
:
{
"authIcon"
:
""
,
"authTitle"
:
""
,
"authTitle2"
:
""
,
"banControl"
:
0
,
"cnIsAttention"
:
1
,
"cnIsComment"
:
1
,
"cnIsLike"
:
1
,
"cnMainControl"
:
1
,
"cnShareControl"
:
1
,
"posterShareControl"
:
0
,
"rmhDesc"
:
"小彭彭1"
,
"rmhHeadUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/vod/content/202403/202403We141251405/uqu.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg"
,
"rmhId"
:
5833534
,
"rmhName"
:
"小彭彭1"
,
"userId"
:
"573020066540485"
,
"userType"
:
"2"
},
"rmhPlatform"
:
1
,
"sceneId"
:
"189"
,
"shareInfo"
:
{
"shareCoverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/zhbj-20240323/image/content/7f06635daecb44a8a807a2edbfe7e5cc.jpeg?x-oss-process=image/resize,w_400"
,
"shareOpen"
:
1
,
"sharePosterCoverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/zhbj-20240323/image/content/7f06635daecb44a8a807a2edbfe7e5cc.jpeg?x-oss-process=image/resize,m_fill,h_450,w_800/quality,q_90&x-oss-process=image/resize,m_fill,h_450,w_800,limit_0/quality,q_90"
,
"sharePosterOpen"
:
1
,
"shareSummary"
:
"人民号——汇聚人民的力量"
,
"shareTitle"
:
"0323 图集验证0323 图集验证0323 图集验证0323 图集验证0323"
,
"shareUrl"
:
"https://pd-people-uat.pdnews.cn/rmhphotos/30035070427"
},
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民号发布平台"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002815043_pictures_r"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002815043_pictures_r"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"19"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"500002815058_dynamicArticle_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"dynamicArticle"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"【#火焰蓝与天空色彩同样鲜艳#】海南消防三亚市消防支队 开展高层建筑灭火救援实战演练,脚踩云梯的蓝朋友与天空比肩。#一张图说说你眼中的消防员# "
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"19"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2001
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"690*1035"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956062010682896384.jpeg?x-oss-process=image/resize,w_550/quality,q_90/format,jpg"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
1035
,
"landscape"
:
2
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956062010682896384.jpeg?x-oss-process=image/resize,w_550/quality,q_90/format,jpg"
,
"weight"
:
690
},
{
"format"
:
null
,
"height"
:
1035
,
"landscape"
:
2
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956062010682896384.jpeg?x-oss-process=image/resize,w_550/quality,q_90/format,jpg"
,
"weight"
:
690
},
{
"format"
:
null
,
"height"
:
388
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956062006102716416.jpeg?x-oss-process=image/resize,w_550/quality,q_90/format,jpg"
,
"weight"
:
690
}],
"hasMore"
:
null
,
"itemId"
:
"500002815058_dynamicArticle_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"dynamicArticle"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
1
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
"【#火焰蓝与天空色彩同样鲜艳#】海南消防三亚市消防支队 开展高层建筑灭火救援实战演练,脚踩云梯的蓝朋友与天空比肩。#一张图说说你眼中的消防员# "
,
"newsTitle"
:
"【#火焰蓝与天空色彩同样鲜艳#】海南消防三亚市消防支队 开展高层建筑灭火救援实战演练,脚踩云梯的蓝朋友与天空比肩。#一张图说说你眼中的消防员# "
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035070022"
,
"objectLevel"
:
""
,
"objectType"
:
"14"
,
"openComment"
:
1
,
"openLikes"
:
1
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711185644000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
1
,
"relId"
:
500002815058
,
"relObjectId"
:
"2001"
,
"relType"
:
1
,
"rmhInfo"
:
{
"authIcon"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/creator-category/icon/auth/blue.png"
,
"authTitle"
:
" 中国消防 "
,
"authTitle2"
:
""
,
"banControl"
:
0
,
"cnIsAttention"
:
1
,
"cnIsComment"
:
1
,
"cnIsLike"
:
1
,
"cnMainControl"
:
1
,
"cnShareControl"
:
1
,
"posterShareControl"
:
1
,
"rmhDesc"
:
"\n我们是国家综合性消防救援队伍,对党忠诚、纪律严明、赴汤蹈火、竭诚为民。坚持人民至上、生命至上,忠实履行好职责使命,为保护人民生命财产安全、维护社会稳定作出新的更大贡献。“全灾种,大应急”,这支“蓝朋友”队伍始终守护在你的左右。"
,
"rmhHeadUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/vod/content/202302/202302Sa121448724/TUw.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg"
,
"rmhId"
:
4257106
,
"rmhName"
:
"中国消防"
,
"userId"
:
"513697197197256"
,
"userType"
:
"2"
},
"rmhPlatform"
:
1
,
"sceneId"
:
"189"
,
"shareInfo"
:
{
"shareCoverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956062010682896384.jpeg?x-oss-process=image/resize,w_400"
,
"shareOpen"
:
1
,
"sharePosterCoverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240323/a_956062010682896384.jpeg?x-oss-process=image/resize,w_550/quality,q_90/format,jpg&x-oss-process=image/resize,w_750/quality,q_90/format,jpg"
,
"sharePosterOpen"
:
0
,
"shareSummary"
:
"【#火焰蓝与天空色彩同样鲜艳#】海南消防三亚市消防支队 开展高层建筑灭火救援实战演练,脚踩云梯的蓝朋友与天空比肩。#一张图说说你眼中的消防员# "
,
"shareTitle"
:
"来自中国消防的动态"
,
"shareUrl"
:
"https://pd-people-uat.pdnews.cn/rmhmoments/30035070022"
},
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民号"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002815058_dynamicArticle_r"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002815058_dynamicArticle_r"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"11"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"500002810860_article_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"article"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"奋力开创中部地区崛起新局面——从五年成绩单看中部地区高质量发展新成效"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"11"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2001
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
""
,
"coverType"
:
null
,
"coverUrl"
:
""
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
null
,
"itemId"
:
"500002810860_article_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"article"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
...
...
@@ -52,51 +532,227 @@
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"
8月5号正在修路,给出行带来了诸多不变
"
,
"newsTitle"
:
"
奋力开创中部地区崛起新局面——从五年成绩单看中部地区高质量发展新成效
"
,
"newsTitleColor"
:
""
,
"objectId"
:
"
60000000430
"
,
"objectId"
:
"
30035024055
"
,
"objectLevel"
:
""
,
"objectType"
:
"
16
"
,
"objectType"
:
"
8
"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1
697091605
000"
,
"publishTime"
:
"1
710903273
000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500000002539
,
"relObjectId"
:
"2062"
,
"recommend"
:
1
,
"relId"
:
500002810860
,
"relObjectId"
:
"2001"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
null
,
"sceneId"
:
""
,
"rmhPlatform"
:
0
,
"sceneId"
:
"189"
,
"shareInfo"
:
null
,
"slideShows"
:
[
],
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
""
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[
],
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceId"
:
"
bd1806623db7719d-500002810860_article_r
"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
},
{
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002810860_article_r"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"500002812601_special_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"special"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"重复过滤验证"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2001
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*720"
,
"coverType"
:
1
,
"coverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20240321/image/display/8f5fefc4a54041caabb2da3161c7c016.jpeg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
720
,
"landscape"
:
1
,
"size"
:
1193766
,
"url"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20240321/image/display/8f5fefc4a54041caabb2da3161c7c016.jpeg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1080
}],
"hasMore"
:
null
,
"itemId"
:
"500002812601_special_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"special"
,
"keyArticle"
:
null
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
"http://pd-people-uat.pdnews.cn/h/articletopic/35444-10000016006"
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
"重复过滤验证"
,
"newsTitle"
:
"重复过滤验证"
,
"newsTitleColor"
:
""
,
"objectId"
:
"10000016006"
,
"objectLevel"
:
"21"
,
"objectType"
:
"5"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
"35444"
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1711005145000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
1
,
"relId"
:
500002812601
,
"relObjectId"
:
"2001"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
null
,
"sceneId"
:
"189"
,
"shareInfo"
:
{
"shareCoverUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/sjbj-20240321/image/display/233506091ae04e44a3f434d45d190981.png?x-oss-process=image/resize,w_400"
,
"shareOpen"
:
1
,
"sharePosterCoverUrl"
:
""
,
"sharePosterOpen"
:
1
,
"shareSummary"
:
"重复过滤验证"
,
"shareTitle"
:
"重复过滤验证"
,
"shareUrl"
:
"http://pd-people-uat.pdnews.cn/articletopic/35444-10000016006"
},
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
""
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
1
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002812601_special_r"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002812601_special_r"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"500002809406_article_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"article"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"普京宣布将建成通往克里米亚的陆路走廊"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
...
...
@@ -107,25 +763,23 @@
"channelId"
:
2002
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"61
6*463
"
,
"coverSize"
:
"61
9*466
"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403151512545044.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
""
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403190756156070.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[
{
"format"
:
null
,
"height"
:
463
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403151512545044.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
616
}
],
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
466
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/202403190756156070.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
619
}],
"hasMore"
:
null
,
"itemId"
:
""
,
"itemId"
:
"
500002809406_article_r
"
,
"itemType"
:
""
,
"itemTypeCode"
:
""
,
"itemTypeCode"
:
"
article
"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
null
,
...
...
@@ -135,10 +789,10 @@
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
"涉事人员被拘。"
,
"newsTitle"
:
"北京昌平一社区火警延报近1小时:2人被拘,原因离谱"
,
"newsSummary"
:
""
,
"newsTitle"
:
"普京宣布将建成通往克里米亚的陆路走廊"
,
"newsTitleColor"
:
""
,
"objectId"
:
"3003
4963995
"
,
"objectId"
:
"3003
5004897
"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
...
...
@@ -147,47 +801,488 @@
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1710
487201
000"
,
"publishTime"
:
"1710
806786
000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
null
,
"relId"
:
500002806288
,
"recommend"
:
1
,
"relId"
:
500002809406
,
"relObjectId"
:
"2002"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
""
,
"sceneId"
:
"
189
"
,
"shareInfo"
:
null
,
"slideShows"
:
[
],
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"央视新闻"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[
],
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002809406_article_r"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002809406_article_r"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"4"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"30034995422_article"
,
"itemType"
:
""
,
"itemTypeCode"
:
"article"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"一条裙子卖出3亿,中国汉服第一城凭什么?"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"4"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
null
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1080*1619"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/rmh/voice/202403/4ba33167fb0c61d89dde5861ae76278e.jpg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
2
,
"height"
:
1619
,
"landscape"
:
2
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/rmh/voice/202403/4ba33167fb0c61d89dde5861ae76278e.jpg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1080
},
{
"format"
:
1
,
"height"
:
173
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/rmh/image/202403/202403181254249170.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
231
},
{
"format"
:
2
,
"height"
:
545
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/ueditor/image/20240318/a_954196675209981952.jpeg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1028
}],
"hasMore"
:
null
,
"itemId"
:
"30034995422_article"
,
"itemType"
:
""
,
"itemTypeCode"
:
"article"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
1
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"一条裙子卖出3亿,中国汉服第一城凭什么?"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30034995422"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
1
,
"openLikes"
:
1
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1710737664000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
1
,
"relId"
:
null
,
"relObjectId"
:
""
,
"relType"
:
null
,
"rmhInfo"
:
{
"authIcon"
:
""
,
"authTitle"
:
""
,
"authTitle2"
:
""
,
"banControl"
:
0
,
"cnIsAttention"
:
1
,
"cnIsComment"
:
1
,
"cnIsLike"
:
1
,
"cnMainControl"
:
1
,
"cnShareControl"
:
1
,
"posterShareControl"
:
1
,
"rmhDesc"
:
"公众号ID:didaofengwu\n行走的风物百科,发现每一寸土地的不一样。"
,
"rmhHeadUrl"
:
"https://uatjdcdnphoto.aikan.pdnews.cn/vod/content/202302/202302Sa121448724/TUw.png?x-oss-process=image/resize,l_100/auto-orient,1/quality,q_90/format,jpg"
,
"rmhId"
:
4256750
,
"rmhName"
:
"地道风物"
,
"userId"
:
"517997811744645"
,
"userType"
:
"2"
},
"rmhPlatform"
:
1
,
"sceneId"
:
"189"
,
"shareInfo"
:
{
"shareCoverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/rmh/voice/202403/4ba33167fb0c61d89dde5861ae76278e.jpg?x-oss-process=image/resize,w_400"
,
"shareOpen"
:
1
,
"sharePosterCoverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/rmh/voice/202403/4ba33167fb0c61d89dde5861ae76278e.jpg?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90&x-oss-process=image/resize,m_fill,h_500,w_750,limit_0/quality,q_90"
,
"sharePosterOpen"
:
0
,
"shareSummary"
:
"一条裙子卖出3亿,中国汉服第一城凭什么?"
,
"shareTitle"
:
"一条裙子卖出3亿,中国汉服第一城凭什么?"
,
"shareUrl"
:
"https://pd-people-uat.pdnews.cn/rmharticle/30034995422"
},
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民号"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-30034995422_article"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-30034995422_article"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"500002809219_audio_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"audio"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"【健康侦探】这6种玉米不适合糖尿病患者"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2066
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"380*285"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/show_type/201909/201909191837553423.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
285
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/show_type/201909/201909191837553423.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
380
}],
"hasMore"
:
null
,
"itemId"
:
"500002809219_audio_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"audio"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
1
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
""
,
"newsTitle"
:
"【健康侦探】这6种玉米不适合糖尿病患者"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30035003364"
,
"objectLevel"
:
""
,
"objectType"
:
"13"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1710773433000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
1
,
"relId"
:
500002809219
,
"relObjectId"
:
"2066"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
"189"
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002809219_audio_r"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
{
"defaultMultiple"
:
"1.0"
,
"openMultipleAdjustment"
:
1
,
"type"
:
3
,
"voiceDuration"
:
270
,
"voiceUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/voice/202403/202403182230126760.mp3"
}
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002809219_audio_r"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
},
{
"audioDataList"
:
[],
"backgroundImgUrl"
:
""
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"cardUpdateStrategy"
:
null
,
"compStyle"
:
"13"
,
"compType"
:
"appStyle"
,
"dataSourceType"
:
""
,
"expIds"
:
"325"
,
"extraData"
:
""
,
"fullColumnImgUrls"
:
[],
"hasMore"
:
1
,
"id"
:
null
,
"imageScale"
:
null
,
"imgSize"
:
""
,
"itemId"
:
"500002808564_article_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"article"
,
"linkUrl"
:
""
,
"localGovernance"
:
null
,
"name"
:
""
,
"objectId"
:
""
,
"objectLevel"
:
""
,
"objectSummary"
:
""
,
"objectTitle"
:
"“两高”首次将签订“阴阳合同”明确列举为逃税手段"
,
"objectType"
:
""
,
"openComment"
:
null
,
"openLikes"
:
null
,
"operDataList"
:
[{
"activityExt"
:
null
,
"appStyle"
:
"13"
,
"askInfo"
:
null
,
"axisColor"
:
""
,
"bestNoticer"
:
null
,
"bottomNavId"
:
null
,
"cardItemId"
:
""
,
"channelId"
:
2002
,
"commentInfo"
:
null
,
"corner"
:
""
,
"coverSize"
:
"1000*750"
,
"coverType"
:
1
,
"coverUrl"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/rmrb_47491710729450.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"expIds"
:
"325"
,
"extra"
:
""
,
"fullColumnImgUrls"
:
[{
"format"
:
null
,
"height"
:
750
,
"landscape"
:
1
,
"size"
:
1
,
"url"
:
"https://rmrbcmsonline.peopleapp.com/upload/image/202403/rmrb_47491710729450.png?x-oss-process=image/resize,m_fill,h_160,w_240/quality,q_90"
,
"weight"
:
1000
}],
"hasMore"
:
null
,
"itemId"
:
"500002808564_article_r"
,
"itemType"
:
""
,
"itemTypeCode"
:
"article"
,
"keyArticle"
:
0
,
"landscape"
:
null
,
"likeStyle"
:
null
,
"linkUrl"
:
""
,
"liveInfo"
:
null
,
"menuShow"
:
2
,
"newTags"
:
""
,
"newsAuthor"
:
""
,
"newsSubTitle"
:
""
,
"newsSummary"
:
"聚焦新形势下如何有效与涉税犯罪作斗争,保障国家税收,维护税收秩序。"
,
"newsTitle"
:
"“两高”首次将签订“阴阳合同”明确列举为逃税手段"
,
"newsTitleColor"
:
""
,
"objectId"
:
"30034992848"
,
"objectLevel"
:
""
,
"objectType"
:
"8"
,
"openComment"
:
null
,
"openLikes"
:
null
,
"pageId"
:
""
,
"photoNum"
:
null
,
"position"
:
null
,
"productNum"
:
null
,
"publishTime"
:
"1710729306000"
,
"pushTime"
:
null
,
"pushUnqueId"
:
null
,
"readFlag"
:
0
,
"recommend"
:
1
,
"relId"
:
500002808564
,
"relObjectId"
:
"2002"
,
"relType"
:
1
,
"rmhInfo"
:
null
,
"rmhPlatform"
:
0
,
"sceneId"
:
"189"
,
"shareInfo"
:
null
,
"slideShows"
:
[],
"sortValue"
:
null
,
"source"
:
"人民日报客户端"
,
"subObjectType"
:
""
,
"subSceneId"
:
""
,
"tagIds"
:
[],
"tagWord"
:
null
,
"titleShow"
:
null
,
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
""
,
"traceId"
:
"
bd1806623db7719d-500002808564_article_r
"
,
"traceInfo"
:
""
,
"userInfo"
:
null
,
"videoInfo"
:
null
,
"visitorComment"
:
0
,
"voiceInfo"
:
null
}
],
}],
"pageId"
:
""
,
"position"
:
null
,
"posterSize"
:
""
,
"posterUrl"
:
""
,
"questionSection"
:
null
,
"recommend"
:
1
,
"relId"
:
null
,
"sceneId"
:
"189"
,
"sortValue"
:
null
,
"subSceneId"
:
""
,
"summaryName"
:
""
,
"tabOperDataList"
:
[],
"titleShowPolicy"
:
null
,
"topicTemplate"
:
null
,
"traceId"
:
"bd1806623db7719d-500002808564_article_r"
,
"traceInfo"
:
""
,
"viewTime"
:
""
,
"viewTimeBlurred"
:
null
}],
"id"
:
20011
,
"name"
:
""
,
"pageId"
:
""
,
"pageNum"
:
1
,
"pageSize"
:
20
,
"totalCount"
:
2
"pageSize"
:
10
,
"recommend"
:
0
,
"totalCount"
:
null
},
"message"
:
"Success"
,
"meta"
:
null
,
"meta"
:
{
"md5"
:
"7bdba943ba35b1283cbf688cdd309057"
},
"requestId"
:
""
,
"success"
:
true
,
"timestamp"
:
1711010813300
}
\ No newline at end of file
"timestamp"
:
1711329606643
}
...
...
Please
register
or
login
to post a comment