Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8617e108
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,发现更多精彩内容 >>
提交
8617e108
编写于
9月 22, 2022
作者:
L
luoying_ace_admin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
revise doc
Signed-off-by:
N
luoying_ace_admin
<
luoying19@huawei.com
>
上级
816c14a2
变更
12
显示空白变更内容
内联
并排
Showing
12 changed file
with
41 addition
and
35 deletion
+41
-35
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-gauge.md
...ation-dev/reference/arkui-ts/ts-basic-components-gauge.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
...ation-dev/reference/arkui-ts/ts-basic-components-image.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md
...tion-dev/reference/arkui-ts/ts-basic-components-slider.md
+3
-3
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-span.md
...cation-dev/reference/arkui-ts/ts-basic-components-span.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textarea.md
...on-dev/reference/arkui-ts/ts-basic-components-textarea.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md
...n-dev/reference/arkui-ts/ts-container-alphabet-indexer.md
+5
-5
zh-cn/application-dev/reference/arkui-ts/ts-container-listitemgroup.md
...tion-dev/reference/arkui-ts/ts-container-listitemgroup.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-container-panel.md
.../application-dev/reference/arkui-ts/ts-container-panel.md
+1
-1
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md
...tion-dev/reference/arkui-ts/ts-drawing-components-line.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-types.md
zh-cn/application-dev/reference/arkui-ts/ts-types.md
+12
-12
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-border-image.md
...eference/arkui-ts/ts-universal-attributes-border-image.md
+6
-0
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-border.md
...-dev/reference/arkui-ts/ts-universal-attributes-border.md
+6
-6
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-gauge.md
浏览文件 @
8617e108
...
...
@@ -43,7 +43,7 @@ Gauge(options:{value: number, min?: number, max?: number})
| 名称 | 类型定义 | 描述 |
| --------- | -------------------- | ------------------------------------------------------------ |
| ColorStop |
[
[ResourceColor
](
ts-types.md#resourcecolor
8
)
,
number] | 描述渐进色颜色断点类型,第一个参数为颜色值,第二个参数为0~1之间的比例值。 |
| ColorStop |
[
[ResourceColor
](
ts-types.md#resourcecolor
)
,
number] | 描述渐进色颜色断点类型,第一个参数为颜色值,第二个参数为0~1之间的比例值。 |
## 示例
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-image.md
浏览文件 @
8617e108
...
...
@@ -43,7 +43,7 @@ Image(src: string | PixelMap | Resource)
| sourceSize | {
<br/>
width:
number,
<br/>
height:
number
<br/>
} | 设置图片裁剪尺寸,将原始图片解码成pixelMap,指定尺寸的图片,单位为px。
<br/>
**说明:**
<br/>
PixelMap资源不支持该属性。 |
| matchTextDirection | boolean | 设置图片是否跟随系统语言方向,在RTL语言环境下显示镜像翻转显示效果。
<br/>
默认值:false |
| fitOriginalSize | boolean | 图片组件尺寸未设置时,其显示尺寸是否跟随图源尺寸。
<br/>
默认值:true |
| fillColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 填充颜色。设置的填充颜色会覆盖在图片上。仅对svg图源生效,设置后会替换svg图片的fill颜色。 |
| fillColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 填充颜色。设置的填充颜色会覆盖在图片上。仅对svg图源生效,设置后会替换svg图片的fill颜色。 |
| autoResize | boolean | 是否需要在图片解码过程中对图源做resize操作,该操作会根据显示区域的尺寸决定用于绘制的图源尺寸,有利于减少内存占用。
<br/>
默认值:true |
| syncLoad
<sup>
8+
</sup>
| boolean | 设置是否同步加载图片,默认是异步加载。同步加载时阻塞UI线程,不会显示占位图。
<br/>
默认值:false |
| copyOption
<sup>
9+
</sup>
|
[
CopyOptions
](
ts-appendix-enums.md#copyoptions9
)
| 设置图片是否可复制(SVG图片不支持复制)。
<br/>
当copyOption设置为非CopyOptions.None时,支持使用长按、鼠标右击、快捷组合键'CTRL+C'等方式进行复制。
<br/>
默认值:CopyOptions.None |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md
浏览文件 @
8617e108
...
...
@@ -42,9 +42,9 @@ Slider(options?: {value?: number, min?: number, max?: number, step?: number, sty
| 名称 | 参数类型 | 描述 |
| -------- | -------- | -------- |
| blockColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置滑块的颜色。 |
| trackColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置滑轨的背景颜色。 |
| selectedColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置滑轨的已滑动颜色。 |
| blockColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置滑块的颜色。 |
| trackColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置滑轨的背景颜色。 |
| selectedColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置滑轨的已滑动颜色。 |
| showSteps | boolean | 设置当前是否显示步长刻度值。
<br/>
默认值:false |
| showTips | boolean | 设置滑动时是否显示气泡提示百分比。
<br/>
默认值:false |
| trackThickness |
[
Length
](
ts-types.md#length
)
| 设置滑轨的粗细。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-span.md
浏览文件 @
8617e108
...
...
@@ -30,7 +30,7 @@ Span(value: string | Resource)
| 名称 | 参数类型 | 描述 |
| -------- | -------- | -------- |
| decoration | {
<br/>
type:
[TextDecorationType](ts-appendix-enums.md#textdecorationtype),
<br/>
color?:
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
<br/>
} | 设置文本装饰线样式及其颜色。
<br/>
默认值:{
<br/>
type:
TextDecorationType.None
<br/>
color:Color.Black
<br/>
} |
| decoration | {
<br/>
type:
[TextDecorationType](ts-appendix-enums.md#textdecorationtype),
<br/>
color?:
[
ResourceColor
](
ts-types.md#resourcecolor
)
<br/>
} | 设置文本装饰线样式及其颜色。
<br/>
默认值:{
<br/>
type:
TextDecorationType.None
<br/>
color:Color.Black
<br/>
} |
| letterSpacing | number
\|
string | 设置文本字符间距。 |
| textCase |
[
TextCase
](
ts-appendix-enums.md#textcase
)
| 设置文本大小写。
<br/>
默认值:TextCase.Normal |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textarea.md
浏览文件 @
8617e108
...
...
@@ -31,10 +31,10 @@ TextArea(value?:{placeholder?: ResourceStr, text?: ResourceStr, controller?: Tex
| 名称 | 参数类型 | 描述 |
| ------------------------ | ---------------------------------------- | ---------------------------------------- |
| placeholderColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置placeholder文本颜色。 |
| placeholderColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置placeholder文本颜色。 |
| placeholderFont |
[
Font
](
ts-types.md#font
)
| 设置placeholder文本样式。 |
| textAlign |
[
TextAlign
](
ts-appendix-enums.md#textalign
)
| 设置文本水平对齐式。
<br/>
默认值:TextAlign.Start |
| caretColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置输入框光标颜色。 |
| caretColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置输入框光标颜色。 |
| inputFilter
<sup>
8+
</sup>
| {
<br/>
value:
[ResourceStr](ts-types.md#resourcestr),
<br/>
error?:
(value:
string) => void
<br/>
} | 通过正则表达式设置输入过滤器。满足表达式的输入允许显示,不满足的输入被忽略。仅支持单个字符匹配,不支持字符串匹配。例如:^(?=.
\*\d
)(?=.
\*
[a-z])(?=.
\*
[A-Z]).{8,10}$,不支持过滤8到10位的强密码。
<br/>
-
value:设置正则表达式。
<br/>
-
error:正则匹配失败时,返回被忽略的内容。 |
| copyOption
<sup>
9+
</sup>
|
[
CopyOptions
](
ts-appendix-enums.md#copyoptions9
)
| 设置文本是否可复制。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md
浏览文件 @
8617e108
...
...
@@ -29,11 +29,11 @@ AlphabetIndexer(value: {arrayValue: Array<string>, selected: number})
| 名称 | 参数类型 | 描述 |
| ----------------------- | --------------- | ----------------------------------------------------------- |
| color |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置文字颜色。 |
| selectedColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置选中项文字颜色。 |
| popupColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置提示弹窗文字颜色。 |
| selectedBackgroundColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置选中项背景颜色。 |
| popupBackground |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 设置提示弹窗背景色。 |
| color |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置文字颜色。 |
| selectedColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置选中项文字颜色。 |
| popupColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置提示弹窗文字颜色。 |
| selectedBackgroundColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置选中项背景颜色。 |
| popupBackground |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置提示弹窗背景色。 |
| usingPopup | boolean | 设置是否使用提示弹窗。 |
| selectedFont |
[
Font
](
ts-types.md#font
)
| 设置选中项文字样式。 |
| popupFont |
[
Font
](
ts-types.md#font
)
| 设置提示弹窗字体样式。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-listitemgroup.md
浏览文件 @
8617e108
...
...
@@ -31,7 +31,7 @@ ListItemGroup(options?: {header?: CustomBuilder, footer?: CustomBuilder, space?:
| 名称 | 参数类型 | 描述 |
| -------- | -------- | -------- |
| divider | {
<br/>
strokeWidth:
[Length](ts-types.md#length),
<br/>
color?:
[ResourceColor](ts-types.md#resourcecolor
8
),
<br/>
startMargin?:
[Length](ts-types.md#length),
<br/>
endMargin?:
[Length](ts-types.md#length)
<br/>
}
\|
null | 用于设置ListItem分割线样式,默认无分割线。
<br/>
strokeWidth:
分割线的线宽。
<br/>
color:
分割线的颜色。
<br/>
startMargin:
分割线距离列表侧边起始端的距离。
<br/>
endMargin:
分割线距离列表侧边结束端的距离。 |
| divider | {
<br/>
strokeWidth:
[Length](ts-types.md#length),
<br/>
color?:
[ResourceColor](ts-types.md#resourcecolor),
<br/>
startMargin?:
[Length](ts-types.md#length),
<br/>
endMargin?:
[Length](ts-types.md#length)
<br/>
}
\|
null | 用于设置ListItem分割线样式,默认无分割线。
<br/>
strokeWidth:
分割线的线宽。
<br/>
color:
分割线的颜色。
<br/>
startMargin:
分割线距离列表侧边起始端的距离。
<br/>
endMargin:
分割线距离列表侧边结束端的距离。 |
## 示例
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-panel.md
浏览文件 @
8617e108
...
...
@@ -34,7 +34,7 @@ Panel(show: boolean)
| halfHeight | string
\|
number | 指定PanelMode.Half状态下的高度,默认为屏幕尺寸的一半。 |
| miniHeight | string
\|
number | 指定PanelMode.Mini状态下的高度。 |
| show | boolean | 当滑动面板弹出时调用。 |
| backgroundMask
<sup>
9+
</sup>
|
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
|指定Panel的背景蒙层。|
| backgroundMask
<sup>
9+
</sup>
|
[
ResourceColor
](
ts-types.md#resourcecolor
)
|指定Panel的背景蒙层。|
## PanelType枚举说明
...
...
zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md
浏览文件 @
8617e108
...
...
@@ -36,9 +36,9 @@ Line(value?: {width?: string | number, height?: string | number})
| -------- | -------- | -------- | -------- | -------- |
| startPoint | Array
<
Length
>
| [0,
0] | 否 | 直线起点坐标点(相对坐标),单位vp。 |
| endPoint | Array
<
Length
>
| [0,
0] | 否 | 直线终点坐标点(相对坐标),单位vp。 |
| fill |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| Color.Black | 否 | 设置填充区域颜色。 |
| fill |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| Color.Black | 否 | 设置填充区域颜色。 |
| fillOpacity | number
\|
string
\|
[
Resource
](
ts-types.md#resource类型
)
| 1 | 否 | 设置填充区域透明度。 |
| stroke |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| Color.Black | 否 | 设置线条颜色。 |
| stroke |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| Color.Black | 否 | 设置线条颜色。 |
| strokeDashArray | Array
<
Length
>
| [] | 否 | 设置线条间隙。 |
| strokeDashOffset | number
\|
string | 0 | 否 | 线条绘制起点的偏移量。 |
| strokeLineCap |
[
LineCapStyle
](
ts-appendix-enums.md#linecapstyle
)
| LineCapStyle.Butt | 否 | 设置线条端点绘制样式。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-types.md
浏览文件 @
8617e108
...
...
@@ -87,10 +87,10 @@
| 名称 | 类型 | 必填 | 说明 |
| ------ | ------------- | ---- | -------- |
| top |
[
ResourceColor
](
#resourcecolor
8
)
| 否 | 组件上边框颜色。 |
| right |
[
ResourceColor
](
#resourcecolor
8
)
| 否 | 组件右边框颜色。 |
| bottom |
[
ResourceColor
](
#resourcecolor
8
)
| 否 | 组件下边框颜色。 |
| left |
[
ResourceColor
](
#resourcecolor
8
)
| 否 | 组件左边框颜色。 |
| top |
[
ResourceColor
](
#resourcecolor
)
| 否 | 组件上边框颜色。 |
| right |
[
ResourceColor
](
#resourcecolor
)
| 否 | 组件右边框颜色。 |
| bottom |
[
ResourceColor
](
#resourcecolor
)
| 否 | 组件下边框颜色。 |
| left |
[
ResourceColor
](
#resourcecolor
)
| 否 | 组件左边框颜色。 |
## EdgeStyles<sup>9+</sup>
...
...
@@ -113,12 +113,12 @@
| dx |
[
Length
](
#length
)
| 是 | 水平方向偏移量。 |
| dy |
[
Length
](
#length
)
| 是 | 竖直方向偏移量。 |
## ResourceColor
<sup>8+</sup>
## ResourceColor
颜色类型,用于描述资源颜色类型。
| 类型 | 说明 |
| ---------------------------------------- | --------------------------- |
| ---------------------------------------- | ---------------------------
----------------------
|
|
[
Color
](
ts-appendix-enums.md#color
)
| 颜色枚举值。 |
| number | HEX格式颜色。 |
| string | rgb或者rgba格式颜色。 |
...
...
@@ -194,7 +194,7 @@
| 名称 | 类型 | 必填 | 说明 |
| ------ | ---------------------------------------- | ---- | ------- |
| width |
[
Length
](
#length
)
\|
[
EdgeWidths
](
#edgewidths9
)
<sup>
9+
</sup>
| 否 | 边框宽度。 |
| color |
[
ResourceColor
](
#resourcecolor
8
)
\|
[
EdgeColors
](
#edgecolors9
)
<sup>
9+
</sup>
| 否 | 边框颜色。 |
| color |
[
ResourceColor
](
#resourcecolor
)
\|
[
EdgeColors
](
#edgecolors9
)
<sup>
9+
</sup>
| 否 | 边框颜色。 |
| radius |
[
Length
](
#length
)
\|
[
BorderRadiuses
](
#borderradiuses9
)
<sup>
9+
</sup>
| 否 | 边框圆角半径。 |
| style |
[
BorderStyle
](
ts-appendix-enums.md#borderstyle
)
\|
EdgeStyles
<sup>
9+
</sup>
| 否 | 边框样式。 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-border-image.md
浏览文件 @
8617e108
...
...
@@ -10,6 +10,12 @@
| 名称 | 参数类型 | 描述 |
| ---------- | ---------------------------------------- | --------------------------------------- |
| borderImage | BorderImageOption | 图片边框或者渐变色边框设置接口。 |
## BorderImageOption对象说明
| 名称 | 类型 | 描述 |
| ---------- | ---------------------------------------- | --------------------------------------- |
| source | string
\|
[
Resource
](
ts-types.md#resource
)
\|
[
linearGradient
](
ts-universal-attributes-gradient-color.md
)
| 边框图源或者渐变色设置。 |
| slice |
[
Length
](
ts-types.md#length
)
\|
EdgeWidths | 设置图片边框切割宽度。
<br/>
默认值:0 |
| width |
[
Length
](
ts-types.md#length
)
\|
EdgeWidths | 设置图片边框宽度。
<br/>
默认值:0 |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-border.md
浏览文件 @
8617e108
...
...
@@ -13,10 +13,10 @@
| 名称 | 参数类型 | 描述 |
| ------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| border | {
<br/>
width?:
[Length](ts-types.md#length)
\|
EdgeWidths
<sup>
9+
</sup>
,
<br/>
color?:
[ResourceColor](ts-types.md#resourcecolor
8
)
\|
EdgeColors
<sup>
9+
</sup>
,
<br/>
radius?:
[Length](ts-types.md#length)
\|
BorderRadiuses
<sup>
9+
</sup>
,
<br/>
style?:
[BorderStyle](ts-appendix-enums.md#borderstyle)
\|
EdgeStyles
<sup>
9+
</sup><br/>
} | 统一边框样式设置接口。
<br/>
-
width:设置边框宽度。
<br/>
-
color:设置边框颜色。
<br/>
-
radius:设置边框圆角半径。
<br/>
-
style:设置边框样式。 |
| border | {
<br/>
width?:
[Length](ts-types.md#length)
\|
EdgeWidths
<sup>
9+
</sup>
,
<br/>
color?:
[ResourceColor](ts-types.md#resourcecolor)
\|
EdgeColors
<sup>
9+
</sup>
,
<br/>
radius?:
[Length](ts-types.md#length)
\|
BorderRadiuses
<sup>
9+
</sup>
,
<br/>
style?:
[BorderStyle](ts-appendix-enums.md#borderstyle)
\|
EdgeStyles
<sup>
9+
</sup><br/>
} | 统一边框样式设置接口。
<br/>
-
width:设置边框宽度。
<br/>
-
color:设置边框颜色。
<br/>
-
radius:设置边框圆角半径。
<br/>
-
style:设置边框样式。 |
| borderStyle |
[
BorderStyle
](
ts-appendix-enums.md#borderstyle
)
\|
EdgeStyles
<sup>
9+
</sup>
| 设置元素的边框样式。
<br/>
默认值:BorderStyle.Solid |
| borderWidth |
[
Length
](
ts-types.md#length
)
\|
EdgeWidths
<sup>
9+
</sup>
| 设置元素的边框宽度。 |
| borderColor |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
\|
EdgeColors
<sup>
9+
</sup>
| 设置元素的边框颜色。 |
| borderColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
\|
EdgeColors
<sup>
9+
</sup>
| 设置元素的边框颜色。 |
| borderRadius |
[
Length
](
ts-types.md#length
)
\|
BorderRadiuses
<sup>
9+
</sup>
| 设置元素的边框圆角半径。 |
## EdgeWidths<sup>9+</sup>对象说明
...
...
@@ -36,10 +36,10 @@
| 名称 | 参数类型 | 必填 | 描述 |
| ------ | ---------------------------------------- | ---- | ------- |
| left |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 否 | 左侧边框颜色。 |
| right |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 否 | 右侧边框颜色。 |
| top |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 否 | 上侧边框颜色。 |
| bottom |
[
ResourceColor
](
ts-types.md#resourcecolor
8
)
| 否 | 下侧边框颜色。 |
| left |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 否 | 左侧边框颜色。 |
| right |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 否 | 右侧边框颜色。 |
| top |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 否 | 上侧边框颜色。 |
| bottom |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 否 | 下侧边框颜色。 |
## BorderRadiuses<sup>9+</sup>对象说明
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录