index.js 404 B

123456789101112131415161718192021222324252627
  1. const _Http = getApp().globalData.http;
  2. Component({
  3. properties: {
  4. disabled: {
  5. type: Boolean,
  6. value: false
  7. },
  8. detail: {
  9. type: Object
  10. }
  11. },
  12. options: {
  13. addGlobalClass: true
  14. },
  15. lifetimes: {
  16. attached: function () {
  17. getApp().globalData.Language.getLanguagePackage(this)
  18. }
  19. },
  20. data: {},
  21. methods: {
  22. getList(id, init = false) {
  23. },
  24. }
  25. })