在index文件夹下index.js文件下插入代码
wx.showModal({ title: '提示', content: '这是个窗', success:function(res){ if(res.confirm){ console.log("确定") } } })
实现弹窗
示例