index.js 274 B

12345678910111213141516
  1. Component({
  2. properties: {
  3. item: {
  4. type: Object
  5. }
  6. },
  7. options: {
  8. addGlobalClass: true
  9. },
  10. lifetimes: {
  11. attached: function () {
  12. getApp().globalData.Language.getLanguagePackage(this)
  13. }
  14. },
  15. })