Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
ef0f6485
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
ef0f6485
编写于
6月 27, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 27, 2022
浏览文件
操作
浏览文件
下载
差异文件
!3823 适配ace子系统xts编译xts hap包error报错
Merge pull request !3823 from zj/master
上级
5ce115f1
af834531
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
15 addition
and
16 deletion
+15
-16
arkui/ace_ets_standard/entry/src/main/ets/MainAbility/pages/DataPanel.ets
...andard/entry/src/main/ets/MainAbility/pages/DataPanel.ets
+8
-8
arkui/ace_ets_standard/entry/src/main/ets/MainAbility/pages/Image.ets
...s_standard/entry/src/main/ets/MainAbility/pages/Image.ets
+6
-6
arkui/ace_ets_standard/entry/src/main/ets/MainAbility/pages/Slider.ets
..._standard/entry/src/main/ets/MainAbility/pages/Slider.ets
+0
-1
arkui/ace_ets_test/entry/src/main/ets/MainAbility/pages/Swiper.ets
..._ets_test/entry/src/main/ets/MainAbility/pages/Swiper.ets
+1
-1
未找到文件。
arkui/ace_ets_standard/entry/src/main/ets/MainAbility/pages/DataPanel.ets
浏览文件 @
ef0f6485
...
...
@@ -18,8 +18,8 @@ import router from '@system.router'
@Entry
@Component
struct dataPanel_testcase {
@State
w
idth: string= "200"
@State
h
eight: string= "100"
@State
myW
idth: string= "200"
@State
myH
eight: string= "100"
@State active: boolean = false
private content: string = "DataPanel Page"
...
...
@@ -36,8 +36,8 @@ struct dataPanel_testcase {
Text(`${this.content}`)
.fontSize(50)
DataPanel({ values: [20, 40, 20], max: 100, type: DataPanelType.Line })
.width(this.
w
idth)
.height(this.
h
eight)
.width(this.
myW
idth)
.height(this.
myH
eight)
.key('DataPanel')
.onClick(() => {
router.back()
...
...
@@ -45,16 +45,16 @@ struct dataPanel_testcase {
.closeEffect(false)
DataPanel({ values: [20, 40, 20], max: 100, type: DataPanelType.Circle})
.width(this.
w
idth)
.height(this.
h
eight)
.width(this.
myW
idth)
.height(this.
myH
eight)
.key('DataPanel2')
.onClick(() => {
router.back()
})
.closeEffect(true)
DataPanel({ values: [20, 40, 20], max: 100})
.width(this.
w
idth)
.height(this.
h
eight)
.width(this.
myW
idth)
.height(this.
myH
eight)
.key('DataPanel3')
.onClick(() => {
router.back()
...
...
arkui/ace_ets_standard/entry/src/main/ets/MainAbility/pages/Image.ets
浏览文件 @
ef0f6485
...
...
@@ -16,8 +16,8 @@
@Entry
@Component
struct image_textcase {
@State Width: number = 0
@State
h
eight: number = 0
@State
my
Width: number = 0
@State
myH
eight: number = 0
onPageShow() {
console.info('Image page show called');
...
...
@@ -58,10 +58,10 @@ struct image_textcase {
width: number,
height: number
}) => {
this.Width = msg.width
this.
h
eight = msg.height
console.info('Width ----' + this.Width)
console.info('height ----' + this.
h
eight)
this.
my
Width = msg.width
this.
myH
eight = msg.height
console.info('Width ----' + this.
my
Width)
console.info('height ----' + this.
myH
eight)
})
.onError(() => {
console.info('load image fail')
...
...
arkui/ace_ets_standard/entry/src/main/ets/MainAbility/pages/Slider.ets
浏览文件 @
ef0f6485
...
...
@@ -18,7 +18,6 @@
struct slider {
@State inSetValue: number= 40
@State outSetValue: number= 40
@State direction: Axis= Axis.Horizontal
@State Begin: number = SliderChangeMode.Begin
onPageShow() {
...
...
arkui/ace_ets_test/entry/src/main/ets/MainAbility/pages/Swiper.ets
浏览文件 @
ef0f6485
...
...
@@ -43,7 +43,7 @@ struct SwiperExample {
private swiperController: SwiperController = new SwiperController()
private data: MyDataSource = new MyDataSource([])
private
aboutToAppear(): void {
aboutToAppear(): void {
let list = []
for (var i = 1; i <= 10; i++) {
list.push(i.toString());
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录