plugin-x0popup

2017-05-11  本文已影响0人  快乐的大鹅
function x0popup(func) {
  x0p({
      title: '请确认',
      text: '是否执行当前操作',
      icon: 'info',
      buttons: [{
        type: 'cancel',
        text: '取消'
      }, {
        type: 'info',
        text: '确定'
      }]
    },
    function(button) {
      if (button == 'info') {
        func();
      }
    });
}
上一篇下一篇

猜你喜欢

热点阅读