mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
67 lines
1.4 KiB
JavaScript
67 lines
1.4 KiB
JavaScript
const { Actionsheet, extend } = require('../../dist/index');
|
|
|
|
Page(extend({}, Actionsheet, {
|
|
data: {
|
|
baseActionsheet: {
|
|
show: false,
|
|
cancelText: '关闭 Action',
|
|
closeOnClickOverlay: true,
|
|
componentId: 'baseActionsheet',
|
|
actions: [{
|
|
name: '选项1',
|
|
subname: '选项描述语1',
|
|
className: 'action-class',
|
|
loading: false
|
|
}, {
|
|
name: '选项2',
|
|
subname: '选项描述语2',
|
|
className: 'action-class',
|
|
loading: false
|
|
}, {
|
|
name: '去分享',
|
|
openType: 'share'
|
|
}]
|
|
}
|
|
},
|
|
|
|
onShareAppMessage() {
|
|
return {
|
|
title: 'ZanUI-WeApp',
|
|
imageUrl: 'https://img.yzcdn.cn/public_files/2017/02/06/ee0ebced79a80457d77ce71c7d414c74.png'
|
|
};
|
|
},
|
|
|
|
toggleActionsheet() {
|
|
this.setData({
|
|
'baseActionsheet.show': true
|
|
});
|
|
},
|
|
|
|
handleZanActionsheetCancel({ componentId }) {
|
|
this.setData({
|
|
[`${componentId}.show`]: false
|
|
});
|
|
},
|
|
|
|
handleZanActionsheetClick({ componentId, index }) {
|
|
console.log(`item index ${index} clicked`);
|
|
|
|
// 如果是分享按钮被点击, 不处理关闭
|
|
if (index === 2) {
|
|
return;
|
|
}
|
|
|
|
this.setData({
|
|
[`${componentId}.actions[${index}].loading`]: true
|
|
});
|
|
|
|
setTimeout(() => {
|
|
this.setData({
|
|
[`${componentId}.show`]: false,
|
|
[`${componentId}.actions[${index}].loading`]: false
|
|
});
|
|
}, 1500);
|
|
}
|
|
|
|
}));
|