index.js 326 B

123456789101112131415161718
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. },
  6. detele: {
  7. type: Boolean
  8. }
  9. },
  10. lifetimes: {
  11. attached: function () {
  12. getApp().globalData.Language.getLanguagePackage(this)
  13. }
  14. },
  15. options: {
  16. addGlobalClass: true
  17. }
  18. })