Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
122546b5
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
122546b5
编写于
6月 29, 2023
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
toast 示例完善
上级
a011c05b
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
50 addition
and
5 deletion
+50
-5
pages/API/toast/toast.uvue
pages/API/toast/toast.uvue
+50
-5
未找到文件。
pages/API/toast/toast.uvue
浏览文件 @
122546b5
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
<view class="uni-padding-wrap">
<view class="uni-padding-wrap">
<view class="uni-btn-v">
<view class="uni-btn-v">
<button class="uni-btn" type="default" @tap="toast1Tap">点击弹出默认toast</button>
<button class="uni-btn" type="default" @tap="toast1Tap">点击弹出默认toast</button>
<button class="uni-btn" type="default" @tap="toastTapIconError">点击弹出设置icon的toast</button>
<button class="uni-btn" type="default" @tap="toast2Tap">点击弹出设置duration的toast</button>
<button class="uni-btn" type="default" @tap="toast2Tap">点击弹出设置duration的toast</button>
<button class="uni-btn" type="default" @tap="toast3Tap">点击弹出显示loading的toast</button>
<button class="uni-btn" type="default" @tap="toast3Tap">点击弹出显示loading的toast</button>
<!-- #ifndef MP-ALIPAY -->
<!-- #ifndef MP-ALIPAY -->
...
@@ -14,6 +15,7 @@
...
@@ -14,6 +15,7 @@
<!-- #endif -->
<!-- #endif -->
<button class="uni-btn" type="default" @tap="hideToast">点击隐藏toast</button>
<button class="uni-btn" type="default" @tap="hideToast">点击隐藏toast</button>
</view>
</view>
<text>{{exeRet}}</text>
</view>
</view>
</view>
</view>
</template>
</template>
...
@@ -22,6 +24,7 @@
...
@@ -22,6 +24,7 @@
data() {
data() {
return {
return {
title: 'toast',
title: 'toast',
exeRet:'',
_showTimer: 0
_showTimer: 0
}
}
},
},
...
@@ -33,20 +36,50 @@
...
@@ -33,20 +36,50 @@
methods: {
methods: {
toast1Tap: function () {
toast1Tap: function () {
uni.showToast({
uni.showToast({
title: "默认"
title: "默认",
success:function(res){
this.exeRet = "success:" + JSON.stringify(res) + new Date()
},
fail:function(res){
this.exeRet = "fail:" + JSON.stringify(res)
},
})
},
toastTapIconError: function () {
uni.showToast({
title: "默认",
icon:'error',
success:function(res){
this.exeRet = "success:" + JSON.stringify(res) + new Date()
},
fail:function(res){
this.exeRet = "fail:" + JSON.stringify(res)
},
})
})
},
},
toast2Tap: function () {
toast2Tap: function () {
uni.showToast({
uni.showToast({
title: "duration 3000",
title: "duration 3000",
duration: 3000
duration: 3000,
success:function(res){
this.exeRet = "success:" + JSON.stringify(res) + new Date()
},
fail:function(res){
this.exeRet = "fail:" + JSON.stringify(res)
},
})
})
},
},
toast3Tap: function () {
toast3Tap: function () {
uni.showToast({
uni.showToast({
title: "loading",
title: "loading",
icon: "loading",
icon: "loading",
duration: 5000
duration: 5000,
success:function(res){
this.exeRet = "success:" + JSON.stringify(res) + new Date()
},
fail:function(res){
this.exeRet = "fail:" + JSON.stringify(res)
},
})
})
// #ifdef MP-ALIPAY
// #ifdef MP-ALIPAY
this._showTimer = setTimeout(() => {
this._showTimer = setTimeout(() => {
...
@@ -61,14 +94,26 @@
...
@@ -61,14 +94,26 @@
toast4Tap: function () {
toast4Tap: function () {
uni.showToast({
uni.showToast({
title: "logo",
title: "logo",
image: "/static/uni.png"
image: "/static/uni.png",
success:function(res){
this.exeRet = "success:" + JSON.stringify(res) + new Date()
},
fail:function(res){
this.exeRet = "fail:" + JSON.stringify(res)
},
})
})
},
},
// #ifdef APP-PLUS
// #ifdef APP-PLUS
toast5Tap: function () {
toast5Tap: function () {
uni.showToast({
uni.showToast({
title: "显示一段轻提示",
title: "显示一段轻提示",
position: 'bottom'
position: 'bottom',
success:function(res){
this.exeRet = "success:" + JSON.stringify(res) + new Date()
},
fail:function(res){
this.exeRet = "fail:" + JSON.stringify(res)
},
})
})
},
},
// #endif
// #endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录