contacts.js 370 B

123456789101112131415161718192021222324
  1. Component({
  2. options: {
  3. addGlobalClass: true
  4. },
  5. lifetimes: {
  6. attached: function () {
  7. getApp().globalData.Language.getLanguagePackage(this)
  8. }
  9. },
  10. properties: {
  11. contacts: {
  12. type: Array
  13. },
  14. mode: {
  15. type: String
  16. }
  17. },
  18. data: {
  19. },
  20. methods: {
  21. }
  22. })