index.js 300 B

123456789101112131415161718
  1. const _Http = getApp().globalData.http;
  2. Component({
  3. options: {
  4. addGlobalClass: true
  5. },
  6. data: {
  7. CustomBar: getApp().globalData.CustomBar,
  8. },
  9. methods: {
  10. init() {
  11. this.get()
  12. return true;
  13. },
  14. get() {
  15. this.selectComponent("#histogram").render();
  16. }
  17. }
  18. })