index.js 277 B

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