index.js 600 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // nova-tourism/components/cell-list/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. detail: {
  8. type: Object,
  9. default: {}
  10. },
  11. icon: {
  12. type: String,
  13. default: ''
  14. },
  15. iconColor: {
  16. type: String,
  17. default: ''
  18. },
  19. arrowText:{
  20. type: String,
  21. default: ''
  22. }
  23. },
  24. /**
  25. * 组件的初始数据
  26. */
  27. data: {},
  28. /**
  29. * 组件的方法列表
  30. */
  31. methods: {
  32. arrowtap(){
  33. this.triggerEvent('arrowtap')
  34. }
  35. }
  36. })