百度小程序-葵花宝典

1 禁止页面右滑手势返回 
2 {
3      "navigationBarTitleText": "首页",
4      "disableSwipeBack":"true",
5 }
disableSwipeBack 默认false

自定义组件 components 里 创建的组件 如何获取app.js 的 方法、数据
利用getApp() 获取到
1     methods: {
2         onTap: function (event) {
3         },
4         callPhone: function () {
5             swan.makePhoneCall({
6                 phoneNumber: getApp().globalData.phone
7             });
8         }
9     }

 

posted @ 2019-06-27 16:05  suni1024  阅读(351)  评论(0编辑  收藏  举报