electricity_bill_calc_wx/childPackage/miniprogram_npm/towxml/decode.js

26 lines
440 B
JavaScript

const config = require('./config');
Component({
options: {
styleIsolation: 'apply-shared'
},
properties: {
nodes: {
type: Object,
value: {}
}
},
lifetimes: {
attached: function () {
const _ts = this;
config.events.forEach(item => {
_ts['_' + item] = function (...arg) {
if (global._events && typeof global._events[item] === 'function') {
global._events[item](...arg);
}
};
});
}
}
})