Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
80468ef5
D
Docs
项目概览
OpenHarmony
/
Docs
接近 2 年 前同步成功
通知
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看板
提交
80468ef5
编写于
2月 23, 2023
作者:
G
Gloria
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update docs against 13788+14684
Signed-off-by: wusongqing<wusongqing@huawei.com>
上级
00bea328
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
193 addition
and
190 deletion
+193
-190
en/application-dev/reference/apis/js-apis-ability-featureAbility.md
...tion-dev/reference/apis/js-apis-ability-featureAbility.md
+108
-113
en/application-dev/reference/apis/js-apis-ability-particleAbility.md
...ion-dev/reference/apis/js-apis-ability-particleAbility.md
+72
-71
en/application-dev/reference/apis/js-apis-image.md
en/application-dev/reference/apis/js-apis-image.md
+13
-6
未找到文件。
en/application-dev/reference/apis/js-apis-ability-featureAbility.md
浏览文件 @
80468ef5
此差异已折叠。
点击以展开。
en/application-dev/reference/apis/js-apis-ability-particleAbility.md
浏览文件 @
80468ef5
...
@@ -14,7 +14,7 @@ The ParticleAbility module is used to perform operations on abilities of the Dat
...
@@ -14,7 +14,7 @@ The ParticleAbility module is used to perform operations on abilities of the Dat
## Modules to Import
## Modules to Import
```
ts
```
ts
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
```
```
## particleAbility.startAbility
## particleAbility.startAbility
...
@@ -40,27 +40,27 @@ Observe the following when using this API:
...
@@ -40,27 +40,27 @@ Observe the following when using this API:
**Example**
**Example**
```
ts
```
ts
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
import
wantConstant
from
'
@ohos.ability.wantConstant
'
;
import
wantConstant
from
'
@ohos.ability.wantConstant
'
particleAbility
.
startAbility
(
particleAbility
.
startAbility
(
{
{
want
:
want
:
{
{
action
:
'
action.system.home
'
,
action
:
"
action.system.home
"
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
"
entity.system.home
"
],
type
:
'
MIMETYPE
'
,
type
:
"
MIMETYPE
"
,
flags
:
wantConstant
.
Flags
.
FLAG_AUTH_READ_URI_PERMISSION
,
flags
:
wantConstant
.
Flags
.
FLAG_AUTH_READ_URI_PERMISSION
,
deviceId
:
''
,
deviceId
:
""
,
bundleName
:
'
com.example.Data
'
,
bundleName
:
"
com.example.Data
"
,
abilityName
:
'
EntryAbility
'
,
abilityName
:
"
EntryAbility
"
,
uri
:
''
uri
:
""
},
},
},
},
(
error
,
result
)
=>
{
(
error
,
result
)
=>
{
console
.
error
(
'
particleAbility startAbility errCode: ${JSON.stringify(error)}, result: ${JSON.stringify(result)}
'
);
console
.
log
(
'
particleAbility startAbility errCode:
'
+
error
+
'
result:
'
+
result
)
},
},
)
;
)
```
```
## particleAbility.startAbility
## particleAbility.startAbility
...
@@ -91,25 +91,25 @@ Observe the following when using this API:
...
@@ -91,25 +91,25 @@ Observe the following when using this API:
**Example**
**Example**
```
ts
```
ts
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
import
wantConstant
from
'
@ohos.ability.wantConstant
'
;
import
wantConstant
from
'
@ohos.ability.wantConstant
'
particleAbility
.
startAbility
(
particleAbility
.
startAbility
(
{
{
want
:
want
:
{
{
action
:
'
action.system.home
'
,
action
:
"
action.system.home
"
,
entities
:
[
'
entity.system.home
'
],
entities
:
[
"
entity.system.home
"
],
type
:
'
MIMETYPE
'
,
type
:
"
MIMETYPE
"
,
flags
:
wantConstant
.
Flags
.
FLAG_AUTH_READ_URI_PERMISSION
,
flags
:
wantConstant
.
Flags
.
FLAG_AUTH_READ_URI_PERMISSION
,
deviceId
:
''
,
deviceId
:
""
,
bundleName
:
'
com.example.Data
'
,
bundleName
:
"
com.example.Data
"
,
abilityName
:
'
EntryAbility
'
,
abilityName
:
"
EntryAbility
"
,
uri
:
''
uri
:
""
},
},
},
},
).
then
((
data
)
=>
{
).
then
((
data
)
=>
{
console
.
info
(
'
particleAbility startAbility
'
);
console
.
info
(
"
particleAbility startAbility
"
);
});
});
```
```
...
@@ -130,13 +130,13 @@ Terminates this ParticleAbility. This API uses an asynchronous callback to retur
...
@@ -130,13 +130,13 @@ Terminates this ParticleAbility. This API uses an asynchronous callback to retur
**Example**
**Example**
```
ts
```
ts
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
particleAbility
.
terminateSelf
(
particleAbility
.
terminateSelf
(
(
error
,
result
)
=>
{
(
error
,
result
)
=>
{
console
.
log
(
'
particleAbility terminateSelf errCode:
${JSON.stringify(error)}, result: ${JSON.stringify(result)}
'
);
console
.
log
(
'
particleAbility terminateSelf errCode:
'
+
error
+
'
result:
'
+
result
)
}
}
)
;
)
```
```
## particleAbility.terminateSelf
## particleAbility.terminateSelf
...
@@ -156,10 +156,10 @@ Terminates this ParticleAbility. This API uses a promise to return the result.
...
@@ -156,10 +156,10 @@ Terminates this ParticleAbility. This API uses a promise to return the result.
**Example**
**Example**
```
ts
```
ts
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
particleAbility
.
terminateSelf
().
then
((
data
)
=>
{
particleAbility
.
terminateSelf
().
then
((
data
)
=>
{
console
.
info
(
'
particleAbility terminateSelf
'
);
console
.
info
(
"
particleAbility terminateSelf
"
);
});
});
```
```
...
@@ -194,10 +194,10 @@ Observe the following when using this API:
...
@@ -194,10 +194,10 @@ Observe the following when using this API:
**Example**
**Example**
```
ts
```
ts
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
let
uri
=
''
;
var
uri
=
""
;
particleAbility
.
acquireDataAbilityHelper
(
uri
)
;
particleAbility
.
acquireDataAbilityHelper
(
uri
)
```
```
...
@@ -228,17 +228,17 @@ import wantAgent from '@ohos.app.ability.wantAgent';
...
@@ -228,17 +228,17 @@ import wantAgent from '@ohos.app.ability.wantAgent';
function
callback
(
err
,
data
)
{
function
callback
(
err
,
data
)
{
if
(
err
)
{
if
(
err
)
{
console
.
error
(
'
Operation failed cause: ${JSON.stringify(err)}
'
);
console
.
error
(
"
Operation failed cause:
"
+
JSON
.
stringify
(
err
)
);
}
else
{
}
else
{
console
.
info
(
'
Operation succeeded
'
);
console
.
info
(
"
Operation succeeded
"
);
}
}
}
}
let
wantAgentInfo
=
{
let
wantAgentInfo
=
{
wants
:
[
wants
:
[
{
{
bundleName
:
'
com.example.myapplication
'
,
bundleName
:
"
com.example.myapplication
"
,
abilityName
:
'
EntryAbility
'
abilityName
:
"
EntryAbility
"
}
}
],
],
operationType
:
wantAgent
.
OperationType
.
START_ABILITY
,
operationType
:
wantAgent
.
OperationType
.
START_ABILITY
,
...
@@ -248,8 +248,8 @@ let wantAgentInfo = {
...
@@ -248,8 +248,8 @@ let wantAgentInfo = {
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
let
basicContent
=
{
let
basicContent
=
{
title
:
'
title
'
,
title
:
"
title
"
,
text
:
'
text
'
text
:
"
text
"
};
};
let
notificationContent
=
{
let
notificationContent
=
{
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
...
@@ -298,8 +298,8 @@ import wantAgent from '@ohos.app.ability.wantAgent';
...
@@ -298,8 +298,8 @@ import wantAgent from '@ohos.app.ability.wantAgent';
let
wantAgentInfo
=
{
let
wantAgentInfo
=
{
wants
:
[
wants
:
[
{
{
bundleName
:
'
com.example.myapplication
'
,
bundleName
:
"
com.example.myapplication
"
,
abilityName
:
'
EntryAbility
'
abilityName
:
"
EntryAbility
"
}
}
],
],
operationType
:
wantAgent
.
OperationType
.
START_ABILITY
,
operationType
:
wantAgent
.
OperationType
.
START_ABILITY
,
...
@@ -309,8 +309,8 @@ let wantAgentInfo = {
...
@@ -309,8 +309,8 @@ let wantAgentInfo = {
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
wantAgent
.
getWantAgent
(
wantAgentInfo
).
then
((
wantAgentObj
)
=>
{
let
basicContent
=
{
let
basicContent
=
{
title
:
'
title
'
,
title
:
"
title
"
,
text
:
'
text
'
text
:
"
text
"
};
};
let
notificationContent
=
{
let
notificationContent
=
{
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
contentType
:
notification
.
ContentType
.
NOTIFICATION_CONTENT_BASIC_TEXT
,
...
@@ -322,9 +322,9 @@ wantAgent.getWantAgent(wantAgentInfo).then((wantAgentObj) => {
...
@@ -322,9 +322,9 @@ wantAgent.getWantAgent(wantAgentInfo).then((wantAgentObj) => {
};
};
let
id
=
1
;
let
id
=
1
;
particleAbility
.
startBackgroundRunning
(
id
,
request
).
then
(()
=>
{
particleAbility
.
startBackgroundRunning
(
id
,
request
).
then
(()
=>
{
console
.
info
(
'
Operation succeeded
'
);
console
.
info
(
"
Operation succeeded
"
);
}).
catch
((
err
)
=>
{
}).
catch
((
err
)
=>
{
console
.
error
(
'
Operation failed cause: ${JSON.stringify(err)}
'
);
console
.
error
(
"
Operation failed cause:
"
+
JSON
.
stringify
(
err
)
);
});
});
});
});
...
@@ -351,9 +351,9 @@ import particleAbility from '@ohos.ability.particleAbility';
...
@@ -351,9 +351,9 @@ import particleAbility from '@ohos.ability.particleAbility';
function
callback
(
err
,
data
)
{
function
callback
(
err
,
data
)
{
if
(
err
)
{
if
(
err
)
{
console
.
error
(
'
Operation failed cause: ${JSON.stringify(err)}
'
);
console
.
error
(
"
Operation failed cause:
"
+
JSON
.
stringify
(
err
)
);
}
else
{
}
else
{
console
.
info
(
'
Operation succeeded
'
);
console
.
info
(
"
Operation succeeded
"
);
}
}
}
}
...
@@ -381,9 +381,9 @@ Requests to cancel a continuous task from the system. This API uses a promise to
...
@@ -381,9 +381,9 @@ Requests to cancel a continuous task from the system. This API uses a promise to
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
particleAbility
.
cancelBackgroundRunning
().
then
(()
=>
{
particleAbility
.
cancelBackgroundRunning
().
then
(()
=>
{
console
.
info
(
'
Operation succeeded
'
);
console
.
info
(
"
Operation succeeded
"
);
}).
catch
((
err
)
=>
{
}).
catch
((
err
)
=>
{
console
.
error
(
'
Operation failed cause: ${JSON.stringify(err)}
'
);
console
.
error
(
"
Operation failed cause:
"
+
JSON
.
stringify
(
err
)
);
});
});
```
```
...
@@ -413,25 +413,25 @@ Observe the following when using this API:
...
@@ -413,25 +413,25 @@ Observe the following when using this API:
**Example**
**Example**
```
ts
```
ts
import
particleAbility
from
'
@ohos.ability.particleAbility
'
;
import
particleAbility
from
'
@ohos.ability.particleAbility
'
import
rpc
from
'
@ohos.rpc
'
;
import
rpc
from
'
@ohos.rpc
'
function
onConnectCallback
(
element
,
remote
)
{
function
onConnectCallback
(
element
,
remote
)
{
console
.
log
(
'
ConnectAbility onConnect remote is proxy:
${(remote instanceof rpc.RemoteProxy)}
'
);
console
.
log
(
'
ConnectAbility onConnect remote is proxy:
'
+
(
remote
instanceof
rpc
.
RemoteProxy
)
);
}
}
function
onDisconnectCallback
(
element
)
{
function
onDisconnectCallback
(
element
)
{
console
.
log
(
'
ConnectAbility onDisconnect element.deviceId :
${element.deviceId}
'
);
console
.
log
(
'
ConnectAbility onDisconnect element.deviceId :
'
+
element
.
deviceId
)
}
}
function
onFailedCallback
(
code
)
{
function
onFailedCallback
(
code
)
{
console
.
log
(
'
particleAbilityTest ConnectAbility onFailed errCode :
${code}
'
);
console
.
log
(
'
particleAbilityTest ConnectAbility onFailed errCode :
'
+
code
)
}
}
let
connId
=
particleAbility
.
connectAbility
(
var
connId
=
particleAbility
.
connectAbility
(
{
{
bundleName
:
'
com.ix.ServiceAbility
'
,
bundleName
:
"
com.ix.ServiceAbility
"
,
abilityName
:
'
ServiceAbilityA
'
,
abilityName
:
"
ServiceAbilityA
"
,
},
},
{
{
onConnect
:
onConnectCallback
,
onConnect
:
onConnectCallback
,
...
@@ -441,9 +441,9 @@ let connId = particleAbility.connectAbility(
...
@@ -441,9 +441,9 @@ let connId = particleAbility.connectAbility(
);
);
particleAbility
.
disconnectAbility
(
connId
).
then
((
data
)
=>
{
particleAbility
.
disconnectAbility
(
connId
).
then
((
data
)
=>
{
console
.
log
(
'
data: ${data}
'
);
console
.
log
(
"
data:
"
+
data
);
}).
catch
((
error
)
=>
{
}).
catch
((
error
)
=>
{
console
.
log
(
'
particleAbilityTest result errCode :
${error.code}
'
);
console
.
log
(
'
particleAbilityTest result errCode :
'
+
error
.
code
)
});
});
```
```
...
@@ -468,21 +468,21 @@ import particleAbility from '@ohos.ability.particleAbility';
...
@@ -468,21 +468,21 @@ import particleAbility from '@ohos.ability.particleAbility';
import
rpc
from
'
@ohos.rpc
'
;
import
rpc
from
'
@ohos.rpc
'
;
function
onConnectCallback
(
element
,
remote
)
{
function
onConnectCallback
(
element
,
remote
)
{
console
.
log
(
'
ConnectAbility onConnect remote is proxy:
${(remote instanceof rpc.RemoteProxy)}
'
);
console
.
log
(
'
ConnectAbility onConnect remote is proxy:
'
+
(
remote
instanceof
rpc
.
RemoteProxy
)
);
}
}
function
onDisconnectCallback
(
element
)
{
function
onDisconnectCallback
(
element
)
{
console
.
log
(
'
ConnectAbility onDisconnect element.deviceId :
${element.deviceId}
'
);
console
.
log
(
'
ConnectAbility onDisconnect element.deviceId :
'
+
element
.
deviceId
)
}
}
function
onFailedCallback
(
code
)
{
function
onFailedCallback
(
code
)
{
console
.
log
(
'
particleAbilityTest ConnectAbility onFailed errCode :
${code}
'
);
console
.
log
(
'
particleAbilityTest ConnectAbility onFailed errCode :
'
+
code
)
}
}
let
connId
=
particleAbility
.
connectAbility
(
var
connId
=
particleAbility
.
connectAbility
(
{
{
bundleName
:
'
com.ix.ServiceAbility
'
,
bundleName
:
"
com.ix.ServiceAbility
"
,
abilityName
:
'
ServiceAbilityA
'
,
abilityName
:
"
ServiceAbilityA
"
,
},
},
{
{
onConnect
:
onConnectCallback
,
onConnect
:
onConnectCallback
,
...
@@ -492,7 +492,8 @@ let connId = particleAbility.connectAbility(
...
@@ -492,7 +492,8 @@ let connId = particleAbility.connectAbility(
);
);
particleAbility
.
disconnectAbility
(
connId
,
(
err
)
=>
{
particleAbility
.
disconnectAbility
(
connId
,
(
err
)
=>
{
console
.
log
(
'
particleAbilityTest disconnectAbility err: ${JSON.stringify(err)}
'
);
console
.
log
(
"
particleAbilityTest disconnectAbility err====>
"
+
(
"
json err=
"
)
+
JSON
.
stringify
(
err
));
});
});
```
```
...
@@ -518,21 +519,21 @@ import particleAbility from '@ohos.ability.particleAbility';
...
@@ -518,21 +519,21 @@ import particleAbility from '@ohos.ability.particleAbility';
import
rpc
from
'
@ohos.rpc
'
;
import
rpc
from
'
@ohos.rpc
'
;
function
onConnectCallback
(
element
,
remote
)
{
function
onConnectCallback
(
element
,
remote
)
{
console
.
log
(
'
ConnectAbility onConnect remote is proxy:
${(remote instanceof rpc.RemoteProxy)}
'
);
console
.
log
(
'
ConnectAbility onConnect remote is proxy:
'
+
(
remote
instanceof
rpc
.
RemoteProxy
)
);
}
}
function
onDisconnectCallback
(
element
)
{
function
onDisconnectCallback
(
element
)
{
console
.
log
(
'
ConnectAbility onDisconnect element.deviceId :
${element.deviceId}
'
);
console
.
log
(
'
ConnectAbility onDisconnect element.deviceId :
'
+
element
.
deviceId
)
}
}
function
onFailedCallback
(
code
)
{
function
onFailedCallback
(
code
)
{
console
.
log
(
'
particleAbilityTest ConnectAbility onFailed errCode :
${code}
'
);
console
.
log
(
'
particleAbilityTest ConnectAbility onFailed errCode :
'
+
code
)
}
}
let
connId
=
particleAbility
.
connectAbility
(
var
connId
=
particleAbility
.
connectAbility
(
{
{
bundleName
:
'
com.ix.ServiceAbility
'
,
bundleName
:
"
com.ix.ServiceAbility
"
,
abilityName
:
'
ServiceAbilityA
'
,
abilityName
:
"
ServiceAbilityA
"
,
},
},
{
{
onConnect
:
onConnectCallback
,
onConnect
:
onConnectCallback
,
...
@@ -542,9 +543,9 @@ let connId = particleAbility.connectAbility(
...
@@ -542,9 +543,9 @@ let connId = particleAbility.connectAbility(
);
);
particleAbility
.
disconnectAbility
(
connId
).
then
((
data
)
=>
{
particleAbility
.
disconnectAbility
(
connId
).
then
((
data
)
=>
{
console
.
log
(
'
data: ${data}
'
);
console
.
log
(
"
data:
"
+
data
);
}).
catch
((
error
)
=>
{
}).
catch
((
error
)
=>
{
console
.
log
(
'
particleAbilityTest result errCode :
${error.code}
'
);
console
.
log
(
'
particleAbilityTest result errCode :
'
+
error
.
code
)
});
});
```
```
...
...
en/application-dev/reference/apis/js-apis-image.md
浏览文件 @
80468ef5
...
@@ -736,9 +736,15 @@ Rotates this image based on the input angle. This API uses an asynchronous callb
...
@@ -736,9 +736,15 @@ Rotates this image based on the input angle. This API uses an asynchronous callb
**Example**
**Example**
```
js
```
js
async
function
Demo
()
{
var
angle
=
90.0
;
await
pixelmap
.
rotate
(
90.0
);
pixelmap
.
rotate
(
angle
,
(
err
)
=>
{
}
if
(
err
)
{
console
.
error
(
"
Failed to set rotation.
"
);
return
;
}
else
{
console
.
log
(
"
Succeeded in setting rotation.
"
);
}
})
```
```
### rotate<sup>9+</sup>
### rotate<sup>9+</sup>
...
@@ -942,7 +948,8 @@ Creates an **ImageSource** instance based on the URI.
...
@@ -942,7 +948,8 @@ Creates an **ImageSource** instance based on the URI.
**Example**
**Example**
```
js
```
js
let
path
=
this
.
context
.
getApplicationContext
().
fileDirs
+
"
test.jpg
"
;
let
context
=
featureAbility
.
getContext
();
let
path
=
context
.
getCacheDir
()
+
"
test.jpg
"
;
const
imageSourceApi
=
image
.
createImageSource
(
path
);
const
imageSourceApi
=
image
.
createImageSource
(
path
);
```
```
...
@@ -2039,7 +2046,7 @@ Creates an **ImageCreator** instance by specifying the image width, height, form
...
@@ -2039,7 +2046,7 @@ Creates an **ImageCreator** instance by specifying the image width, height, form
| Type | Description |
| Type | Description |
| ------------------------------ | --------------------------------------- |
| ------------------------------ | --------------------------------------- |
|
[
ImageCreator
](
#imagecreator9
)
| Returns an
**ImageCreator**
instance if the operation is successful.|
|
[
ImageCreator
](
#imagecreator9
)
| Returns an
**ImageCreator**
instance if the operation is successful.|
**Example**
**Example**
...
@@ -2524,7 +2531,7 @@ Defines the option for image packing.
...
@@ -2524,7 +2531,7 @@ Defines the option for image packing.
| Name | Type | Readable| Writable| Description |
| Name | Type | Readable| Writable| Description |
| ------- | ------ | ---- | ---- | --------------------------------------------------- |
| ------- | ------ | ---- | ---- | --------------------------------------------------- |
| format | string | Yes | Yes | Format of the packed image.
<br>
Currently, the following formats are supported: JPG, PNG, GIF, BMP, Webp, and RAW
.|
| format | string | Yes | Yes | Format of the packed image.
<br>
Only the JPG and WebP formats are supported
.|
| quality | number | Yes | Yes | Quality of the output image in JPEG encoding. The value ranges from 1 to 100.|
| quality | number | Yes | Yes | Quality of the output image in JPEG encoding. The value ranges from 1 to 100.|
| bufferSize
<sup>
9+
</sup>
| number | Yes | Yes | Buffer size, which is used to set the image size. The default value is 10 MB.|
| bufferSize
<sup>
9+
</sup>
| number | Yes | Yes | Buffer size, which is used to set the image size. The default value is 10 MB.|
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录