wangliang_wd

feat:屏蔽专题意图上报

... ... @@ -21,7 +21,7 @@ export const enum ActionMode {
}
// 上报节目类型白名单
const shareWhiteList = ['1', '2', '5', '8', '9', '14', '15'] //跳转类型:0:不跳转 1:点播,2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,12:组件,13:音频,14动态图文,15动态视频 */
const shareWhiteList = ['1', '2', '8', '9', '14', '15'] //跳转类型:0:不跳转 1:点播,2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,12:组件,13:音频,14动态图文,15动态视频 */
//ViewBlog意图共享-频道列表
export function viewBlogInsightIntentShare(context: common.UIAbilityContext, entityGroupId: string,
... ...
... ... @@ -65,8 +65,6 @@ export function actionUpdatePullRefresh(pageModel: PageModel, event: GestureEven
export function actionUpdateLoadMore(model: PageModel, event: GestureEvent) {
// list size +1
console.log(TAG,model.compList.totalCount(),model.endIndex)
if (model.endIndex >= model.compList.totalCount() - 3 && model.endIndex - 1 <= model.compList.totalCount()) {
// model.offsetY = event.touches[0].y - model.downY;
// if (Math.abs(model.offsetY) > vp2px(model.pullUpLoadHeight) / 2) {
... ...