Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
ee130ca9
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看板
提交
ee130ca9
编写于
7月 29, 2023
作者:
Z
zhangshuqi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fixed
1dc535f6
from
https://gitee.com/zhangshuqq/xts_acts/pulls/9602
增加api用例 Signed-off-by:
N
zhangshuqi
<
zhangshuqi7@huawei.com
>
上级
c7934d6b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
97 addition
and
1 deletion
+97
-1
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/navition3.ets
...ent_ui/entry/src/main/ets/MainAbility/pages/navition3.ets
+61
-0
arkui/ace_ets_component_ui/entry/src/main/ets/test/ApiCommponentAddJsunit.test.ets
...i/entry/src/main/ets/test/ApiCommponentAddJsunit.test.ets
+34
-0
arkui/ace_ets_component_ui/entry/src/main/resources/base/profile/main_pages.json
..._ui/entry/src/main/resources/base/profile/main_pages.json
+2
-1
未找到文件。
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/navition3.ets
0 → 100644
浏览文件 @
ee130ca9
@Entry
@Component
struct navigationType {
@State strokeWidthStr: string = '10px'
@State dividerColorStr: string = '#000000'
@State startMarginStr: string = '5px'
@State endMarginStr: string = '5px'
@State nullFlag: boolean = false
@State dividerColor: Color = Color.Red
private arr: number[] = [1, 2, 3];
normalIcon : Resource = $r("app.media.icon")
selectedIcon: Resource = $r("app.media.icon")
build() {
Column() {
Navigation() {
TextInput({ placeholder: 'search...' })
.width("90%")
.height(40)
.backgroundColor('#FFFFFF')
List({ space: 12 }) {
ForEach(this.arr, (item) => {
ListItem() {
NavRouter() {
Text("NavRouter" + item)
.width("100%")
.height(72)
.backgroundColor('#FFFFFF')
.borderRadius(24)
.fontSize(16)
.fontWeight(500)
.textAlign(TextAlign.Center)
NavDestination() {
Text("NavDestinationContent" + item)
}
.title("NavDestinationTitle" + item)
}
}
}, item => item)
}
.width("90%")
.margin({ top: 12 })
}.key("ArkUX_Navigation_1111")
.title("������������")
.titleMode(NavigationTitleMode.Mini)
.mode(NavigationMode.Auto)
.minContentWidth(50)
.navBarWidth(100)
.navBarWidthRange([50, 300])
}
.height('100%')
.width('100%')
.backgroundColor('#F1F3F5')
}
}
\ No newline at end of file
arkui/ace_ets_component_ui/entry/src/main/ets/test/ApiCommponentAddJsunit.test.ets
浏览文件 @
ee130ca9
...
@@ -593,6 +593,40 @@ export default function ApiCommponentAddJsunit() {
...
@@ -593,6 +593,40 @@ export default function ApiCommponentAddJsunit() {
expect(obj.$attrs.margin).assertEqual('0.00vp');
expect(obj.$attrs.margin).assertEqual('0.00vp');
done();
done();
});
});
it('apiCommponentAddJsunit_2300', 0, async function (done) {
console.info("[apiCommponentAddJsunit_2300] START" );
ohosrouter.clear();
ohosrouter.pushUrl({
url: 'MainAbility/pages/navition3',
params: {
data1: 'message',
data2: {
data3: [123, 456, 789]
}
}
}).then(() => {
// success
}).catch(err => {
console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
})
await CommonFunc.sleep(1000);
let strJson = getInspectorByKey('ArkUX_Navigation_1111');
console.info('apiCommponentAddJsunit_2300 START :'+ JSON.stringify(strJson));
let obj = JSON.parse(strJson);
console.info("apiCommponentAddJsunit_2300 obj is: " + JSON.stringify(obj));
let mode = obj.$attrs.mode
let minContentWidth = obj.$attrs.minContentWidth
let navBarWidth = obj.$attrs.navBarWidth
let navBarWidthRange = obj.$attrs.navBarWidthRange
expect(mode).assertEqual("NavigationMode.AUTO");
expect(minContentWidth).assertEqual("50.00vp");
expect(navBarWidth).assertEqual("100.00vp");
expect(navBarWidthRange).assertEqual("50.00vp, 300.00vp");
console.info('apiCommponentAddJsunit_2300 END ');
done();
});
})
})
...
...
arkui/ace_ets_component_ui/entry/src/main/resources/base/profile/main_pages.json
浏览文件 @
ee130ca9
...
@@ -89,6 +89,7 @@
...
@@ -89,6 +89,7 @@
"MainAbility/pages/RenderFit"
,
"MainAbility/pages/RenderFit"
,
"MainAbility/pages/Xcomponent"
,
"MainAbility/pages/Xcomponent"
,
"MainAbility/pages/RouteType1"
,
"MainAbility/pages/RouteType1"
,
"MainAbility/pages/RouteType2"
"MainAbility/pages/RouteType2"
,
"MainAbility/pages/navition3"
]
]
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录