list.js 378 B

12345678910111213141516171819202122232425262728
  1. // pages/annunciate/modules/list.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. item: {
  8. type: Object,
  9. value: ""
  10. }
  11. },
  12. options: {
  13. addGlobalClass: true
  14. },
  15. /**
  16. * 组件的初始数据
  17. */
  18. data: {
  19. },
  20. /**
  21. * 组件的方法列表
  22. */
  23. methods: {
  24. }
  25. })