| 12345678910111213141516171819202122232425262728293031323334 |
- Page({
- open: function(){
- wx.showActionSheet({
- itemList: ['A', 'B', 'C'],
- success: function(res) {
- if (!res.cancel) {
- console.log(res.tapIndex)
- }
- }
- });
- },
- data: {
- showDialog: false,
- groups: [
- { text: '示例菜单', value: 1 },
- { text: '示例菜单', value: 2 },
- { text: '负向菜单', type: 'warn', value: 3 }
- ]
- },
- openDialog: function () {
- this.setData({
- showDialog: true
- })
- },
- closeDialog: function () {
- this.setData({
- showDialog: false
- })
- },
- btnClick(e) {
- console.log(e)
- this.closeDialog()
- }
- });
|