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
fanmingyou3_wd
2024-01-31 10:30:54 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
301e83fe3a77e9f9bb32375919d3c15c31562b3d
301e83fe
1 parent
0a7cbd64
把DevEco3.1的PeopleDaily_Harmony中的代码合并到DevEco4.0的sight_harmony中,修复没有参与编译而没有报错的文件
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
11 deletions
sight_harmony/wdBean/src/main/ets/enum/ScreenType.ts
sight_harmony/wdComponent/src/main/ets/components/DemoPreviewerComponent.ets
sight_harmony/wdComponent/src/main/ets/components/HeadPictureCardComponent.ets
sight_harmony/wdComponent/src/main/ets/utils/ProcessUtils.ets
sight_harmony/wdBean/src/main/ets/enum/ScreenType.ts
deleted
100644 → 0
View file @
0a7cbd6
/**
* 屏幕类型。1: 竖屏; 2: 横屏;
*/
export
const
enum
ScreenType
{
PORTRAIT
=
"1"
,
// 竖屏
LANDSCAPE
=
"2"
,
// 横屏;
}
sight_harmony/wdComponent/src/main/ets/components/DemoPreviewerComponent.ets
View file @
301e83f
import { CompDTO } from '../repository/bean/CompDTO';
import { ContentDTO } from '../repository/bean/ContentDTO';
import { CompDTO, ContentDTO } from 'wdBean';
const FULL_PARENT: string = '100%';
const COLUMNS_TEMPLATE_ONE: string = '1fr';
...
...
sight_harmony/wdComponent/src/main/ets/components/HeadPictureCardComponent.ets
View file @
301e83f
import { CompDTO } from 'wdBean';
import { CommonConstants } from 'wdConstant';
import { CompDTO } from '../repository/bean/CompDTO';
import { CompUtils } from '../utils/CompUtils';
@Component
...
...
sight_harmony/wdComponent/src/main/ets/utils/ProcessUtils.ets
View file @
301e83f
import { ContentDTO } from 'wdBean';
import { Logger } from 'wdKit';
import { StringUtils } from 'wdKit/src/main/ets/utils/StringUtils';
import { ContentConstants } from '../constants/ContentConstants';
import { ContentDTO } from '../repository/bean/ContentDTO';
const TAG = 'ProcessUtils';
...
...
Please
register
or
login
to post a comment