fanmingyou3_wd

把DevEco3.1的PeopleDaily_Harmony中的代码合并到DevEco4.0的sight_harmony中,修复没有参与编译而没有报错的文件

1 -/**  
2 - * 屏幕类型。1: 竖屏; 2: 横屏;  
3 - */  
4 -export const enum ScreenType {  
5 - PORTRAIT = "1", // 竖屏  
6 - LANDSCAPE = "2", // 横屏;  
7 -}  
1 -import { CompDTO } from '../repository/bean/CompDTO';  
2 -import { ContentDTO } from '../repository/bean/ContentDTO'; 1 +import { CompDTO, ContentDTO } from 'wdBean';
3 2
4 const FULL_PARENT: string = '100%'; 3 const FULL_PARENT: string = '100%';
5 const COLUMNS_TEMPLATE_ONE: string = '1fr'; 4 const COLUMNS_TEMPLATE_ONE: string = '1fr';
  1 +import { CompDTO } from 'wdBean';
1 import { CommonConstants } from 'wdConstant'; 2 import { CommonConstants } from 'wdConstant';
2 -import { CompDTO } from '../repository/bean/CompDTO';  
3 import { CompUtils } from '../utils/CompUtils'; 3 import { CompUtils } from '../utils/CompUtils';
4 4
5 @Component 5 @Component
  1 +import { ContentDTO } from 'wdBean';
1 import { Logger } from 'wdKit'; 2 import { Logger } from 'wdKit';
2 import { StringUtils } from 'wdKit/src/main/ets/utils/StringUtils'; 3 import { StringUtils } from 'wdKit/src/main/ets/utils/StringUtils';
3 import { ContentConstants } from '../constants/ContentConstants'; 4 import { ContentConstants } from '../constants/ContentConstants';
4 -import { ContentDTO } from '../repository/bean/ContentDTO';  
5 5
6 const TAG = 'ProcessUtils'; 6 const TAG = 'ProcessUtils';
7 7