mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
add dialog example
This commit is contained in:
parent
979ae94f36
commit
9b761bd032
3
app.json
3
app.json
@ -15,7 +15,8 @@
|
||||
"example/steps/index",
|
||||
"example/namecard/index",
|
||||
"example/toast/index",
|
||||
"example/icon/index"
|
||||
"example/icon/index",
|
||||
"example/dialog/index"
|
||||
],
|
||||
"window":{
|
||||
"navigationBarBackgroundColor": "#FAFAFA",
|
||||
|
@ -49,6 +49,10 @@
|
||||
<view class="zui-cell__bd">Quantity</view>
|
||||
<view class="zui-cell__ft"></view>
|
||||
</navigator>
|
||||
<navigator class="zui-cell zui-cell--access" url="/example/dialog/index">
|
||||
<view class="zui-cell__bd">Dialog</view>
|
||||
<view class="zui-cell__ft"></view>
|
||||
</navigator>
|
||||
<navigator class="zui-cell zui-cell--access" url="/example/toptips/index">
|
||||
<view class="zui-cell__bd">Toptips</view>
|
||||
<view class="zui-cell__ft"></view>
|
||||
|
20
example/dialog/index.js
Normal file
20
example/dialog/index.js
Normal file
@ -0,0 +1,20 @@
|
||||
var app = getApp()
|
||||
|
||||
Page({
|
||||
data: {
|
||||
showDialog: false
|
||||
},
|
||||
|
||||
toggleDialog() {
|
||||
this.setData({
|
||||
showDialog: !this.data.showDialog
|
||||
});
|
||||
},
|
||||
|
||||
onLoad: function () {
|
||||
|
||||
},
|
||||
|
||||
onShow: function() {
|
||||
},
|
||||
})
|
20
example/dialog/index.wxml
Normal file
20
example/dialog/index.wxml
Normal file
@ -0,0 +1,20 @@
|
||||
<view class="container">
|
||||
|
||||
<view class="zui-btns">
|
||||
<button
|
||||
class="zui-btn zui-btn--primary zui-btn--big"
|
||||
bindtap="toggleDialog"
|
||||
style="margin-top: 40vh;"
|
||||
>
|
||||
显示弹层
|
||||
</button>
|
||||
</view>
|
||||
|
||||
<view class="zui-dialog {{ showDialog ? 'zui-dialog--show' : '' }}">
|
||||
<view class="zui-dialog__mask" bindtap="toggleDialog" />
|
||||
<view class="zui-dialog__container">
|
||||
<view style="padding: 100px 0; text-align: center;">内容</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
Loading…
x
Reference in New Issue
Block a user