| 123456789101112131415161718192021222324252627 |
- const _Http = getApp().globalData.http;
- Component({
- properties: {
- disabled: {
- type: Boolean,
- value: false
- },
- detail: {
- type: Object
- }
- },
- options: {
- addGlobalClass: true
- },
- lifetimes: {
- attached: function () {
- getApp().globalData.Language.getLanguagePackage(this)
- }
- },
- data: {},
- methods: {
- getList(id, init = false) {
- },
- }
- })
|