mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* feat(dialog): add new prop beforeClose * docs(dialog): update doc & example fix #3769 * docs(dialog): fix component demo fix #3812
80 lines
1.2 KiB
JavaScript
80 lines
1.2 KiB
JavaScript
import Page from '../../common/page';
|
|
import Dialog from '../../dist/dialog/dialog';
|
|
|
|
const message = '代码是写出来给人看的,附带能在机器上运行';
|
|
|
|
Page({
|
|
data: {
|
|
show: false,
|
|
},
|
|
|
|
showCustomDialog() {
|
|
this.setData({ show: true });
|
|
},
|
|
|
|
getUserInfo(event) {
|
|
console.log(event.detail);
|
|
},
|
|
|
|
onClickThemeAlert() {
|
|
Dialog.alert({
|
|
title: '标题',
|
|
theme: 'round-button',
|
|
message,
|
|
});
|
|
},
|
|
|
|
onClickThemeAlert2() {
|
|
Dialog.alert({
|
|
theme: 'round-button',
|
|
message,
|
|
});
|
|
},
|
|
|
|
onClickAlert() {
|
|
Dialog.alert({
|
|
title: '标题',
|
|
message,
|
|
});
|
|
},
|
|
|
|
onClickAlert2() {
|
|
Dialog.alert({
|
|
message,
|
|
});
|
|
},
|
|
|
|
onClickConfirm() {
|
|
Dialog.confirm({
|
|
title: '标题',
|
|
message,
|
|
});
|
|
},
|
|
|
|
onClickAsyncClose() {
|
|
const beforeClose = (action) =>
|
|
new Promise((resolve) => {
|
|
setTimeout(() => {
|
|
if (action === 'confirm') {
|
|
resolve(true);
|
|
} else {
|
|
// 拦截取消操作
|
|
resolve(false);
|
|
}
|
|
}, 1000);
|
|
});
|
|
|
|
Dialog.confirm({
|
|
title: '标题',
|
|
message,
|
|
beforeClose,
|
|
});
|
|
},
|
|
|
|
onClose() {
|
|
this.setData({
|
|
show: false,
|
|
});
|
|
},
|
|
});
|