list.js 205 B

12345678910111213
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. }
  6. },
  7. //组件中使用
  8. lifetimes: {
  9. attached: function () {
  10. getApp().globalData.Language.getLanguagePackage(this)
  11. }
  12. },
  13. })