Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
Hello UTS
提交
92c55d96
H
Hello UTS
项目概览
DCloud
/
Hello UTS
通知
1595
Star
27
Fork
9
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
Hello UTS
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
92c55d96
编写于
9月 06, 2024
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加vue uts 方法默认值测试示例
上级
66edb501
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
158 addition
and
5 deletion
+158
-5
pages.json
pages.json
+9
-2
pages/SyntaxCase/defaultValueTest.vue
pages/SyntaxCase/defaultValueTest.vue
+65
-0
pages/SyntaxCase/instanceTest.vue
pages/SyntaxCase/instanceTest.vue
+35
-1
pages/advance/advance.vue
pages/advance/advance.vue
+8
-1
uni_modules/uts-syntaxcase/utssdk/index.uts
uni_modules/uts-syntaxcase/utssdk/index.uts
+41
-1
未找到文件。
pages.json
浏览文件 @
92c55d96
...
...
@@ -164,10 +164,17 @@
"enablePullDownRefresh"
:
false
}
},
{
"path"
:
"pages/SyntaxCase/defaultValueTest"
,
"style"
:
{
"navigationBarTitleText"
:
""
,
"enablePullDownRefresh"
:
false
}
},
//
#endif
//
#ifdef
APP
,
{
"path"
:
"pages/SyntaxCase/utsAndroid"
,
"style"
:
{
...
...
pages/SyntaxCase/defaultValueTest.vue
0 → 100644
浏览文件 @
92c55d96
<
template
>
<view
class=
"buttons"
>
<button
@
click=
"testClick"
>
测试全部
</button>
<text>
{{
testRet
}}
</text>
</view>
</
template
>
<
script
setup
>
import
{
Scan
,
Scan1
,
Scan2
,
myClass
}
from
"
@/uni_modules/uts-syntaxcase
"
;
import
{
ref
}
from
'
vue
'
const
myClassInit
=
new
myClass
();
let
testRet
=
ref
(
"
1
"
);
const
testClick
=
function
(){
testRet
.
value
=
"
success
"
// #ifdef APP-ANDROID
if
(
Scan
()
!=
60000
){
testRet
=
"
error1
"
console
.
log
(
"
error1
"
)
}
if
(
Scan
(
100
)
!=
100
){
testRet
=
"
error2
"
console
.
log
(
"
error2
"
)
}
// #endif
if
(
Scan1
()
!=
"
null
"
){
testRet
=
"
error3
"
console
.
log
(
"
error3
"
)
}
if
(
Scan1
(
100
)
!=
100
){
testRet
=
"
error4
"
console
.
log
(
"
error4
"
)
}
if
(
Scan2
()
!=
"
null
"
){
testRet
=
"
error5
"
console
.
log
(
"
error5
"
)
}
if
(
Scan2
(
100
)
!=
100
){
testRet
=
"
error6
"
console
.
log
(
"
error6
"
)
}
if
(
myClassInit
.
to
(
'
123
'
)
!=
"
123
"
){
testRet
=
"
error7
"
console
.
log
(
"
error7
"
)
}
}
</
script
>
<
style
lang=
"scss"
>
.buttons
{
padding
:
20rpx
20rpx
460rpx
;
button
{
margin-bottom
:
20rpx
;
font-size
:
28rpx
;
padding
:
3px
;
}
}
</
style
>
pages/SyntaxCase/instanceTest.vue
浏览文件 @
92c55d96
...
...
@@ -2,6 +2,7 @@
<div>
{{
ret
}}
<button
@
click=
"instanceCreate"
>
多实例创建测试
</button>
<button
@
click=
"defaultValueTest"
>
默认值测试
</button>
</div>
</
template
>
...
...
@@ -11,7 +12,12 @@
User
}
from
'
@/uni_modules/uts-advance
'
import
{
Scan
,
Scan1
,
Scan2
,
myClass
}
from
"
@/uni_modules/uts-syntaxcase
"
;
export
default
{
data
()
{
...
...
@@ -21,6 +27,34 @@
},
methods
:
{
defaultValueTest
()
{
const
myClassInit
=
new
myClass
();
// 默认值测试
if
(
Scan
()
!=
60000
){
this
.
ret
=
"
测试失败1
"
}
if
(
Scan
(
100
)
!=
100
){
this
.
ret
=
"
测试失败2
"
}
if
(
Scan1
()
!=
null
){
this
.
ret
=
"
测试失败3
"
}
if
(
Scan1
(
100
)
!=
100
){
this
.
ret
=
"
测试失败4
"
}
let
ret5
=
Scan2
()
if
(
ret5
!=
"
null
"
){
console
.
log
(
ret5
)
this
.
ret
=
"
测试失败5
"
}
if
(
Scan2
(
100
)
!=
100
){
this
.
ret
=
"
测试失败6
"
}
if
(
myClassInit
.
to
(
'
123
'
)
!=
123
){
this
.
ret
=
"
测试失败7
"
}
},
instanceCreate
()
{
const
user1
=
new
User
(
"
张三
"
,
20
);
...
...
pages/advance/advance.vue
浏览文件 @
92c55d96
...
...
@@ -116,10 +116,17 @@
},
{
name
:
"
参数传递示例
"
,
url
:
"
SyntaxCase/paramTest
"
},{
},
{
name
:
"
实例测试示例
"
,
url
:
"
SyntaxCase/instanceTest
"
},
// #ifdef UNI-APP-X
{
name
:
"
默认值测试示例
"
,
url
:
"
SyntaxCase/defaultValueTest
"
},
// #endif
{
name
:
"
混编测试示例
"
,
url
:
"
SyntaxCase/MixNativeCode
"
...
...
uni_modules/uts-syntaxcase/utssdk/index.uts
浏览文件 @
92c55d96
...
...
@@ -429,3 +429,43 @@ export class UTSActivityComponentCallback extends UniActivityComponentCallback {
}
// #endif
// #endif
export
function
Scan
(
timeMillis
:
Number
=
60000
):
number
{
console
.
log
(
"Scan"
,
timeMillis
)
return
timeMillis
}
export
function
Scan1
(
timeMillis
?:
Number
)
:
string
{
console
.
log
(
"Scan"
,
timeMillis
)
if
(
timeMillis
==
null
){
return
"null"
}
return
timeMillis
.
toString
()
}
export
function
Scan2
(
timeMillis
?:
Number
|
null
)
:
string
{
console
.
log
(
"Scan"
,
timeMillis
)
if
(
timeMillis
==
null
){
return
"null"
}
return
timeMillis
.
toString
()
}
export
class
myClass
{
constructor
()
{
}
to
(
name
:
String
)
:
string
{
console
.
log
(
name
);
return
name
}
to1
(
name
?:
String
)
:
string
{
if
(
name
==
null
){
return
"null"
}
console
.
log
(
name
);
return
name
!
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录