my.js 564 B

123456789101112131415161718192021222324252627282930
  1. const APP = getApp();
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {},
  7. /**
  8. * 跳转至子页面页面
  9. */
  10. routeTo: function (event) {
  11. const path = event.currentTarget.dataset.path;
  12. APP.Route.routeTo(APP.Route.path[path])
  13. },
  14. /**
  15. * 跳转到设置页面
  16. */
  17. toSet: function () {
  18. console.log(APP.getDeviceList());
  19. if (APP.getDeviceList().length <= 0) {
  20. APP.Modal.tips("你还没有设备,请先去设备管理添加一台设备");
  21. return;
  22. }
  23. wx.navigateTo({
  24. url: "/pages/set/set",
  25. })
  26. }
  27. })