index.js 429 B

123456789101112131415161718192021222324252627282930
  1. // nova-tourism/components/detail-card/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. detail: {
  8. type: Object,
  9. default: {}
  10. },
  11. activeColor:{
  12. type: String,
  13. value: ''
  14. },
  15. },
  16. /**
  17. * 组件的初始数据
  18. */
  19. data: {
  20. },
  21. /**
  22. * 组件的方法列表
  23. */
  24. methods: {
  25. }
  26. })