mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
40 lines
910 B
JavaScript
40 lines
910 B
JavaScript
import Page from '../../common/page';
|
|
import Dialog from '../../dist/dialog/dialog';
|
|
import Notify from '../../dist/notify/notify';
|
|
|
|
Page({
|
|
onClose(event) {
|
|
const { position, instance } = event.detail;
|
|
switch (position) {
|
|
case 'left':
|
|
case 'cell':
|
|
instance.close();
|
|
break;
|
|
case 'right':
|
|
Dialog.confirm({
|
|
message: '确定删除吗?'
|
|
}).then(() => {
|
|
instance.close();
|
|
});
|
|
break;
|
|
}
|
|
},
|
|
onOpen(event) {
|
|
const { position, name } = event.detail;
|
|
switch (position) {
|
|
case 'left':
|
|
Notify({
|
|
type: 'primary',
|
|
message: `${name}${position}部分展示open事件被触发`
|
|
});
|
|
break;
|
|
case 'right':
|
|
Notify({
|
|
type: 'primary',
|
|
message: `${name}${position}部分展示open事件被触发`
|
|
});
|
|
break;
|
|
}
|
|
}
|
|
});
|