forked from wechat-miniprogram/miniprogram-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoast.wxml
25 lines (22 loc) · 805 Bytes
/
toast.wxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<import src="../../../common/head.wxml" />
<import src="../../../common/foot.wxml" />
<view class="container">
<template is="head" data="{{title: 'toast'}}"/>
<view class="page-body">
<view class="btn-area">
<view class="body-view">
<button type="default" bindtap="toast1Tap">点击弹出默认toast</button>
</view>
<view class="body-view">
<button type="default" bindtap="toast2Tap">点击弹出设置duration的toast</button>
</view>
<view class="body-view">
<button type="default" bindtap="toast3Tap">点击弹出显示loading的toast</button>
</view>
<view class="body-view">
<button type="default" bindtap="hideToast">点击隐藏toast</button>
</view>
</view>
</view>
<template is="foot" />
</view>