Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
9e9c8130
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
9e9c8130
编写于
7月 11, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 11, 2023
浏览文件
操作
浏览文件
下载
差异文件
!20679 FIX:补充TextPicker组件api接口使用示例
Merge pull request !20679 from sunjiakun/textpicker_0710
上级
dec19519
9fb58bde
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
34 addition
and
3 deletion
+34
-3
zh-cn/application-dev/reference/arkui-ts/figures/textpicker.gif
...application-dev/reference/arkui-ts/figures/textpicker.gif
+0
-0
zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219662657.png
...ference/arkui-ts/figures/zh-cn_image_0000001219662657.png
+0
-0
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textpicker.md
...-dev/reference/arkui-ts/ts-basic-components-textpicker.md
+34
-3
未找到文件。
zh-cn/application-dev/reference/arkui-ts/figures/textpicker.gif
0 → 100644
浏览文件 @
9e9c8130
280.0 KB
zh-cn/application-dev/reference/arkui-ts/figures/zh-cn_image_0000001219662657.png
已删除
100644 → 0
浏览文件 @
dec19519
12.7 KB
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textpicker.md
浏览文件 @
9e9c8130
...
...
@@ -71,17 +71,48 @@ TextPicker(options?: {range: string[] | string[][] | Resource | TextPickerRangeC
@
Component
struct
TextPickerExample
{
private
select
:
number
=
1
private
fruits
:
string
[]
=
[
'
apple1
'
,
'
orange2
'
,
'
peach3
'
,
'
grape4
'
]
private
apfruits
:
string
[]
=
[
'
apple1
'
,
'
apple2
'
,
'
apple3
'
,
'
apple4
'
]
private
orfruits
:
string
[]
=
[
'
orange1
'
,
'
orange2
'
,
'
orange3
'
,
'
orange4
'
]
private
pefruits
:
string
[]
=
[
'
peach1
'
,
'
peach2
'
,
'
peach3
'
,
'
peach4
'
]
private
multi
:
string
[][]
=
[
this
.
apfruits
,
this
.
orfruits
,
this
.
pefruits
]
private
cascade
:
TextCascadePickerRangeContent
[]
=
[
{
text
:
'
辽宁省
'
,
children
:
[{
text
:
'
沈阳市
'
,
children
:
[{
text
:
'
沈河区
'
},
{
text
:
'
和平区
'
},
{
text
:
'
浑南区
'
}]
},
{
text
:
'
大连市
'
,
children
:
[{
text
:
'
中山区
'
},
{
text
:
'
金州区
'
},
{
text
:
'
长海县
'
}]
}]
},
{
text
:
'
吉林省
'
,
children
:
[{
text
:
'
长春市
'
,
children
:
[{
text
:
'
南关区
'
},
{
text
:
'
宽城区
'
},
{
text
:
'
朝阳区
'
}]
},
{
text
:
'
四平市
'
,
children
:
[{
text
:
'
铁西区
'
},
{
text
:
'
铁东区
'
},
{
text
:
'
梨树县
'
}]
}]
},
{
text
:
'
黑龙江省
'
,
children
:
[{
text
:
'
哈尔滨市
'
,
children
:
[{
text
:
'
道里区
'
},
{
text
:
'
道外区
'
},
{
text
:
'
南岗区
'
}]
},
{
text
:
'
牡丹江市
'
,
children
:
[{
text
:
'
东安区
'
},
{
text
:
'
西安区
'
},
{
text
:
'
爱民区
'
}]
}]
}
]
build
()
{
Column
()
{
TextPicker
({
range
:
this
.
fruits
,
selected
:
this
.
select
})
TextPicker
({
range
:
this
.
apfruits
,
selected
:
this
.
select
})
.
onChange
((
value
:
string
,
index
:
number
)
=>
{
console
.
info
(
'
Picker item changed, value:
'
+
value
+
'
, index:
'
+
index
)
}).
margin
({
bottom
:
50
})
TextPicker
({
range
:
this
.
multi
})
.
onChange
((
value
:
string
|
string
[],
index
:
number
|
number
[])
=>
{
console
.
info
(
'
TextPicker 多列:onChange
'
+
JSON
.
stringify
(
value
)
+
'
,
'
+
'
index:
'
+
JSON
.
stringify
(
index
))
}).
margin
({
bottom
:
50
})
TextPicker
({
range
:
this
.
cascade
})
.
onChange
((
value
:
string
|
string
[],
index
:
number
|
number
[])
=>
{
console
.
info
(
'
TextPicker 多列联动:onChange
'
+
JSON
.
stringify
(
value
)
+
'
,
'
+
'
index:
'
+
JSON
.
stringify
(
index
))
})
}
}
}
```
![
zh-cn_image_0000001219662657
](
figures/zh-cn_image_0000001219662657.png
)
![
textpicker
](
figures/textpicker.gif
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录