Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
97cf86f9
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
97cf86f9
编写于
8月 22, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 22, 2022
浏览文件
操作
浏览文件
下载
差异文件
!5079 【XTS】【事件通知子系统】want失败用例修改_master
Merge pull request !5079 from fujiarui/master
上级
a387f71f
62318e3f
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
144 addition
and
66 deletion
+144
-66
notification/ans_standard/publish_test/getwantagentinfo/src/main/js/test/WantAgent.test.js
..._test/getwantagentinfo/src/main/js/test/WantAgent.test.js
+137
-59
notification/ans_standard/publish_test/wantagent/wantagent5/src/main/js/test/WantAgent.test.js
...t/wantagent/wantagent5/src/main/js/test/WantAgent.test.js
+2
-4
notification/ans_standard/publish_test/wantagent/wantagent5promise/src/main/js/test/WantAgent.test.js
...gent/wantagent5promise/src/main/js/test/WantAgent.test.js
+5
-3
未找到文件。
notification/ans_standard/publish_test/getwantagentinfo/src/main/js/test/WantAgent.test.js
浏览文件 @
97cf86f9
...
...
@@ -26,6 +26,7 @@ var time = 1000
export
default
function
ActsAnsGetWantAgentInfoTest
()
{
describe
(
'
ActsAnsGetWantAgentInfoTest
'
,
function
()
{
console
.
info
(
'
----ActsGetWantAgentInfoTest----
'
);
/*
* @tc.number: ACTS_SetWantInfo_0100
* @tc.name: getWantAgent(),getBundleName(),getUid(),getWant(),cancel()
...
...
@@ -107,6 +108,7 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
},
time
);
console
.
info
(
'
----getWantAgenta after----
'
);
})
/*
* @tc.number: ACTS_SetWantInfo_0200
* @tc.name: getWantAgent(),getBundleName(),getUid(),getWant(),cancel()
...
...
@@ -170,6 +172,7 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_0200====>
"
);
},
time
)
})
/*
* @tc.number: ACTS_SetWantInfo_0300
* @tc.name: equal(normal)
...
...
@@ -372,6 +375,7 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
},
1000
);
})
/*
* @tc.number: ACTS_SetWantInfo_0500
* @tc.name: equal(),cancel()
...
...
@@ -472,6 +476,7 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
},
1000
);
})
/*
* @tc.number: ACTS_SetWantInfo_0600
* @tc.name: equal()
...
...
@@ -494,20 +499,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_0600====>
"
);
},
time
);
});
/*
* @tc.number: ACTS_SetWantInfo_0700
* @tc.name: equal()
* @tc.desc: verify the function of equal("$%$%^$%^","$%$%^$%^")promise
*/
it
(
'
ACTS_SetWantInfo_0700
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
equal
(
"
$%$%^$%^
"
,
"
$%$%^$%^
"
)
console
.
info
(
'
----equali success!----
'
+
promise
)
expect
(
promise
).
assertEqual
(
undefined
);
wantAgent
.
equal
(
"
$%$%^$%^
"
,
"
$%$%^$%^
"
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_0700====>
"
);
},
time
);
});
/*
* @tc.number: ACTS_SetWantInfo_0800
* @tc.name: equal()
...
...
@@ -525,20 +534,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_0800====>
"
);
},
time
);
});
/*
* @tc.number: ACTS_SetWantInfo_0900
* @tc.name: equal()
* @tc.desc: verify the function of equal({},{})promise
*/
it
(
'
ACTS_SetWantInfo_0900
'
,
0
,
async
function
(
done
)
{
var
promise
=
wantAgent
.
equal
({},{})
console
.
info
(
'
----equalk success!----
'
+
promise
)
expect
(
promise
).
assertEqual
(
null
);
wantAgent
.
equal
({},{}).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_0900====>
"
);
},
time
);
});
/*
* @tc.number: ACTS_SetWantInfo_1000
* @tc.name: equal()
...
...
@@ -556,20 +569,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1000====>
"
);
},
time
);
});
/*
* @tc.number: ACTS_SetWantInfo_
22
00
* @tc.number: ACTS_SetWantInfo_
11
00
* @tc.name: equal()
* @tc.desc: verify the function of equal(100,100)promise
*/
it
(
'
ACTS_SetWantInfo_1100
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
equal
(
100
,
100
)
console
.
info
(
'
----equaln success!----
'
+
promise
)
expect
(
promise
).
assertEqual
(
undefined
);
wantAgent
.
equal
(
100
,
100
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1100====>
"
);
},
time
);
});
/*
* @tc.number: ACTS_SetWantInfo_1200
* @tc.name: getWantAgent()
...
...
@@ -584,6 +601,7 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1200====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_1300
* @tc.name: getWantAgent()
...
...
@@ -591,14 +609,17 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
*/
it
(
'
ACTS_SetWantInfo_1300
'
,
0
,
async
function
(
done
)
{
console
.
info
(
'
----ACTS_SetWantInfo_0300 begin----
'
);
var
promise
=
wantAgent
.
getWantAgent
(
""
)
console
.
log
(
"
===getWantAgentb===
"
+
promise
)
expect
(
promise
).
assertEqual
(
null
);
wantAgent
.
getWantAgent
(
""
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1300====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_1400
* @tc.name: getBundleName()
...
...
@@ -613,20 +634,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1400====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_1500
* @tc.name: getBundleName()
* @tc.desc: verify the function of getBundleName("")promise
*/
it
(
'
ACTS_SetWantInfo_1500
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
getBundleName
(
""
)
console
.
info
(
'
----getBundleNameb success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
getBundleName
(
""
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1500====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_1600
* @tc.name: getUid()
...
...
@@ -641,20 +666,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1600====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_1700
* @tc.name: getUid()
* @tc.desc: verify the function of getUid("")promise
*/
it
(
'
ACTS_SetWantInfo_1700
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
getUid
(
""
)
console
.
info
(
'
----getUidb success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
getUid
(
""
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1700====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_1800
* @tc.name: getWant()
...
...
@@ -670,20 +699,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1800====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_1900
* @tc.name: getWant()
* @tc.desc: verify the function of getWant("")promise
*/
it
(
'
ACTS_SetWantInfo_1900
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
getWant
(
""
)
console
.
info
(
'
----getWantb success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
getWant
(
""
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_1900====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2000
* @tc.name: getWantAgent()
...
...
@@ -699,20 +732,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2000====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2100
* @tc.name: getWantAgent()
* @tc.desc: verify the function of getWantAgent(100)promises
*/
it
(
'
ACTS_SetWantInfo_2100
'
,
0
,
async
function
(
done
)
{
var
promise
=
wantAgent
.
getWantAgent
(
100
)
console
.
log
(
"
----getWantAgentb success!----
"
+
promise
)
expect
(
promise
).
assertEqual
(
null
)
wantAgent
.
getWantAgent
(
100
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
();
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2100====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2200
* @tc.name: getBundleName()
...
...
@@ -728,20 +765,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2200====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2300
* @tc.name: getBundleName()
* @tc.desc: verify the function of getBundleName(100)promise
*/
it
(
'
ACTS_SetWantInfo_2300
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
getBundleName
(
100
)
console
.
info
(
'
----getBundleNamed success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
getBundleName
(
100
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2300====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2400
* @tc.name: getUid()
...
...
@@ -756,20 +797,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2400====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2500
* @tc.name: getUid()
* @tc.desc: verify the function of getUid(100)promise
*/
it
(
'
ACTS_SetWantInfo_2500
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
getUid
(
100
)
console
.
info
(
'
----getUidd success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
getUid
(
100
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2500====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2600
* @tc.name: getWant()
...
...
@@ -785,20 +830,24 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2600====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2700
* @tc.name: getWant()
* @tc.desc: verify the function of getWant(100)promise
*/
it
(
'
ACTS_SetWantInfo_2700
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
getWant
(
100
)
console
.
info
(
'
----getWantd success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
getWant
(
100
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWantInfo_2700====>
"
);
},
time
);
})
/*
* @tc.number: ACTS_SetWantInfo_2800
* @tc.name: getWantAgent()
...
...
@@ -811,6 +860,7 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
})
done
();
})
/*
* @tc.number: ACTS_SetWantInfo_2900
* @tc.name: getWantAgent()
...
...
@@ -824,6 +874,7 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
})
done
();
})
/*
* @tc.number: ACTS_SetWantInfo_3000
* @tc.name: getBundleName()
...
...
@@ -836,17 +887,21 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3100
* @tc.name: getBundleName()
* @tc.desc: verify the function of getBundleName({})promise
*/
it
(
'
ACTS_SetWantInfo_3100
'
,
0
,
async
function
(
done
)
{
var
promise
=
wantAgent
.
getBundleName
({})
console
.
info
(
'
----getBundleNamef success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
null
)
wantAgent
.
getBundleName
({}).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3200
* @tc.name: getUid()
...
...
@@ -858,17 +913,21 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3300
* @tc.name: getUid()
* @tc.desc: verify the function of getUid({})promise
*/
it
(
'
ACTS_SetWantInfo_3300
'
,
0
,
async
function
(
done
)
{
var
promise
=
wantAgent
.
getUid
({})
console
.
info
(
'
----getUidf success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
null
)
wantAgent
.
getUid
({}).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3400
* @tc.name: getWant()
...
...
@@ -880,17 +939,21 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3500
* @tc.name: getWant()
* @tc.desc: verify the function of getWant({})promise
*/
it
(
'
ACTS_SetWantInfo_3500
'
,
0
,
async
function
(
done
)
{
var
promise
=
wantAgent
.
getWant
({})
console
.
info
(
'
----getWantf success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
null
)
wantAgent
.
getWant
({}).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3600
* @tc.name: cancel()
...
...
@@ -902,17 +965,21 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3700
* @tc.name: cancel()
* @tc.desc: verify the function of cancel({})promise
*/
it
(
'
ACTS_SetWantInfo_3700
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
cancel
({})
console
.
info
(
'
----cancelb success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
null
)
wantAgent
.
cancel
({}).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3800
* @tc.name: cancel()
...
...
@@ -924,17 +991,21 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_3900
* @tc.name: cancel()
* @tc.desc: verify the function of cancel(100)promise
*/
it
(
'
ACTS_SetWantInfo_3900
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
cancel
(
100
)
console
.
info
(
'
----canceld success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
cancel
(
100
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_4000
* @tc.name: getWant()
...
...
@@ -946,17 +1017,21 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_4100
* @tc.name: cancel()
* @tc.desc: verify the function of cancel("")promise
*/
it
(
'
ACTS_SetWantInfo_4100
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
cancel
(
""
)
console
.
info
(
'
----cancelf success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
cancel
(
""
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_4200
* @tc.name: cancel()
...
...
@@ -968,15 +1043,18 @@ describe('ActsAnsGetWantAgentInfoTest', function () {
});
done
()
})
/*
* @tc.number: ACTS_SetWantInfo_4300
* @tc.name: cancel()
* @tc.desc: verify the function of cancel("%^%^%^")promise
*/
it
(
'
ACTS_SetWantInfo_4300
'
,
0
,
async
function
(
done
)
{
var
promise
=
await
wantAgent
.
cancel
(
"
%^%^%^
"
)
console
.
info
(
'
----cancelh success!----
'
+
promise
);
expect
(
promise
).
assertEqual
(
undefined
)
wantAgent
.
cancel
(
"
%^%^%^
"
).
then
((
error
,
data
)
=>
{
if
(
error
.
code
)
{
expect
(
error
.
code
).
assertEqual
(
-
1
)
}
})
done
()
})
})
...
...
notification/ans_standard/publish_test/wantagent/wantagent5/src/main/js/test/WantAgent.test.js
浏览文件 @
97cf86f9
...
...
@@ -47,7 +47,7 @@ describe('ActsAnsWantAgentFiveTest', function () {
}
},
],
//
operationType: wantAgent.OperationType.START_ABILITY,
operationType
:
wantAgent
.
OperationType
.
START_ABILITY
,
requestCode
:
0
,
wantAgentFlags
:[
wantAgent
.
WantAgentFlags
.
UPDATE_PRESENT_FLAG
]
}
...
...
@@ -75,9 +75,7 @@ describe('ActsAnsWantAgentFiveTest', function () {
}
);
}
else
{
console
.
info
(
'
----getWantAgent failed!----
'
);
console
.
info
(
data
);
expect
(
typeof
(
data
)).
assertEqual
(
"
object
"
);
expect
(
err
.
code
).
assertEqual
(
-
1
)
}
done
();
...
...
notification/ans_standard/publish_test/wantagent/wantagent5promise/src/main/js/test/WantAgent.test.js
浏览文件 @
97cf86f9
...
...
@@ -67,15 +67,17 @@ describe('ActsAnsWantAgentFiveProTest', function () {
console
.
info
(
'
----trigger success!----
'
);
console
.
info
(
'
== trigger data
'
+
JSON
.
stringify
(
data
)
);
}
else
{
console
.
info
(
'
----trigger failed!----
'
);
console
.
info
(
'
== trigger data
'
+
JSON
.
stringify
(
data
)
);
expect
(
err
.
code
).
assertEqual
(
-
1
)
}
done
();
}
);
done
();
}
);
).
catch
((
err
)
=>
{
expect
(
err
.
code
).
assertEqual
(
-
1
)
done
()
})
setTimeout
(
function
(){
console
.
debug
(
"
====>time out ACTS_SetWant_1000====>
"
);
},
time
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录