index.js 262 B

12345678910111213141516171819
  1. // index.js
  2. // 获取应用实例
  3. const app = getApp();
  4. Page({
  5. data: {
  6. type: 'map'
  7. },
  8. onLoad() {
  9. },
  10. switchType(e) {
  11. let type = e.target.dataset && e.target.dataset.type || 'map';
  12. this.setData({
  13. type
  14. })
  15. },
  16. onUnload() {
  17. }
  18. })