index.js 260 B

123456789101112131415
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. }
  6. },
  7. data: {
  8. sColors: {}
  9. },
  10. lifetimes: {
  11. attached: function () {
  12. getApp().globalData.Language.getLanguagePackage(this)
  13. }
  14. },
  15. })