102)微信小程序 van-dialog

Posted chuangjie1988

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了102)微信小程序 van-dialog相关的知识,希望对你有一定的参考价值。

1.效果及Vant 位置

   技术图片技术图片

 

 2.JS

import Dialog from ‘vant-weapp/dialog/dialog‘;
Page({
data: {
   
  },
  onLoad: function(options) {
     Dialog.confirm({
      title: ‘取消預約‘,
      context: this,
      selector: ‘#van-dialog‘,
      message: ‘確定取消該預約嗎?‘
    }).then(() => {
     // on then
    }).catch(() => {
      // on cancel
    });

  },
})

3.WXML  

<van-dialog id="van-dialog"> </van-dialog>

4. JSON

{
  "usingComponents": { 
    "van-dialog": "vant-weapp/dialog"
  }
}

 

以上是关于102)微信小程序 van-dialog的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序代码片段分享

微信小程序视图层WXML_模板

微信小程序加vant组件库弹窗的使用及遇到的问题

微信小程序加vant组件库弹窗的使用及遇到的问题

微信小程序加vant组件库弹窗的使用及遇到的问题

7-微信小程序 模板(template)