mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
141 lines
3.3 KiB
JavaScript
141 lines
3.3 KiB
JavaScript
const Dialog = require('../../dist/dialog/dialog');
|
|
const Toast = require('../../dist/toast/toast');
|
|
|
|
Page({
|
|
toggleBaseDialog() {
|
|
Dialog({
|
|
title: '弹窗',
|
|
message: '这是一个模态弹窗\n换行',
|
|
selector: '#zan-base-dialog',
|
|
showCancelButton: true
|
|
}).then(() => {
|
|
console.log('=== dialog resolve ===', 'type: confirm');
|
|
}).catch(() => {
|
|
console.log('=== dialog reject ===', 'type: cancel');
|
|
});
|
|
},
|
|
|
|
toggleWithoutTitleDialog() {
|
|
Dialog({
|
|
message: '这是一个模态弹窗',
|
|
selector: '#zan-no-title-dialog'
|
|
}).then(() => {
|
|
console.log('=== dialog ===', 'type: confirm');
|
|
});
|
|
},
|
|
|
|
toggleButtonDialog() {
|
|
Dialog({
|
|
title: '弹窗',
|
|
message: '这是一个模态弹窗',
|
|
selector: '#zan-button-dialog',
|
|
buttons: [{
|
|
text: '现金支付',
|
|
color: 'red',
|
|
type: 'cash'
|
|
}, {
|
|
text: '分享',
|
|
type: 'share',
|
|
openType: 'share'
|
|
}, {
|
|
text: '微信支付',
|
|
color: '#3CC51F',
|
|
type: 'wechat'
|
|
}, {
|
|
text: '取消',
|
|
type: 'cancel'
|
|
}]
|
|
}).then(({ type }) => {
|
|
console.log('=== dialog with custom buttons ===', `type: ${type}`);
|
|
});
|
|
},
|
|
|
|
toggleVerticalDialog() {
|
|
Dialog({
|
|
title: '弹窗',
|
|
message: '这是一个模态弹窗',
|
|
selector: '#zan-vertical-dialog',
|
|
buttonsShowVertical: true,
|
|
buttons: [{
|
|
text: '现金支付',
|
|
color: 'red',
|
|
type: 'cash'
|
|
}, {
|
|
text: '微信支付',
|
|
color: '#3CC51F',
|
|
type: 'wechat'
|
|
}, {
|
|
text: '分享',
|
|
type: 'share',
|
|
openType: 'share'
|
|
}, {
|
|
text: '取消',
|
|
type: 'cancel'
|
|
}]
|
|
}).then(({ type }) => {
|
|
console.log('=== dialog with vertical buttons ===', `type: ${type}`);
|
|
});
|
|
},
|
|
|
|
toggleOpenDialog() {
|
|
Dialog({
|
|
title: '弹窗',
|
|
message: '获取用户数据',
|
|
selector: '#zan-open-dialog',
|
|
buttons: [{
|
|
text: '用户信息',
|
|
type: 'userInfo',
|
|
openType: 'getUserInfo'
|
|
}, {
|
|
text: '获取手机号',
|
|
type: 'tel',
|
|
openType: 'getPhoneNumber'
|
|
}, {
|
|
text: '打开授权页',
|
|
type: 'setting',
|
|
openType: 'openSetting'
|
|
}]
|
|
}).then(({ type, hasOpenDataPromise, openDataPromise }) => {
|
|
console.log(type);
|
|
|
|
// 如果没有 open 数据返回,就不处理
|
|
if (!hasOpenDataPromise) {
|
|
return;
|
|
}
|
|
|
|
openDataPromise.then((data) => {
|
|
console.log('成功获取信息', data);
|
|
}).catch((data) => {
|
|
console.log('获取信息失败', data);
|
|
});
|
|
});
|
|
},
|
|
|
|
toggleCloseDialog() {
|
|
Dialog({
|
|
title: '弹窗',
|
|
message: '这是一个自由控制关闭的弹窗',
|
|
selector: '#zan-close-dialog',
|
|
autoClose: false
|
|
}).then(() => {
|
|
console.log('=== dialog resolve ===', 'type: confirm');
|
|
Toast.loading({
|
|
selector: '#zan-toast'
|
|
});
|
|
|
|
// 2s 后自动关闭弹窗
|
|
setTimeout(() => {
|
|
Dialog.close({ selector: '#zan-close-dialog' });
|
|
Toast.clear();
|
|
}, 2000);
|
|
});
|
|
},
|
|
|
|
onShareAppMessage() {
|
|
return {
|
|
title: 'vant-weapp',
|
|
imageUrl: 'https://img.yzcdn.cn/public_files/2017/02/06/ee0ebced79a80457d77ce71c7d414c74.png'
|
|
};
|
|
},
|
|
});
|