12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import { $wuxActionSheet } from '../../dist/index'
- import ad from '../index/ad'
- ad({
- data: {},
- onLoad() {},
- showActionSheet1() {
- wx.showActionSheet({
- itemList: ['实例菜单', '实例菜单'],
- })
- },
- showActionSheet2() {
- $wuxActionSheet().showSheet({
- titleText: '自定义操作',
- buttons: [{
- text: 'Go Dialog',
- },
- {
- text: 'Go Toast',
- }],
- buttonClicked(index, item) {
- index === 0 && wx.navigateTo({
- url: '/pages/dialog/index',
- })
- index === 1 && wx.navigateTo({
- url: '/pages/toast/index',
- })
- return true
- },
- cancelText: '取消',
- cancel() {},
- destructiveText: '删除',
- destructiveButtonClicked() {},
- })
- },
- showActionSheet3() {
- if (this.timeout) clearTimeout(this.timeout)
- const hideSheet = $wuxActionSheet().showSheet({
- theme: 'wx',
- titleText: '三秒后自动关闭',
- buttons: [{
- text: '实例菜单',
- },
- {
- text: '实例菜单',
- }],
- buttonClicked(index, item) {
- return true
- },
- })
- this.timeout = setTimeout(hideSheet, 3000)
- },
- })
|