hotdotbar.js 591 B

12345678910111213141516171819202122232425262728293031323334353637
  1. var Parse = getApp().Parse;
  2. var Nova = getApp().Nova;
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. options: null,
  9. },
  10. /**
  11. * 组件的初始数据
  12. */
  13. data: {
  14. },
  15. /**
  16. * 组件的方法列表
  17. */
  18. methods: {
  19. log(){
  20. console.log(this.data.options);
  21. },
  22. goNovaURL:async function(ev){
  23. let url = ev.currentTarget.dataset.url;
  24. Nova.goNovaURL(url);
  25. }
  26. },
  27. lifetimes: {
  28. attached: function () {
  29. console.log(this.data.options);
  30. },
  31. moved: function () { },
  32. detached: function () { },
  33. },
  34. })