拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
631B

  1. // components/BeautyInfo/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. dataSource: {
  8. type: Object,
  9. default: {}
  10. }
  11. },
  12. /**
  13. * 组件的初始数据
  14. */
  15. data: {
  16. dataItem: {
  17. content: '看!这是朕为你打下的江山!',
  18. imgaeCover: '../../assets/img/upload_head.png',
  19. createTime: '2023-03-21'
  20. }
  21. },
  22. observers: {
  23. 'dataSource'(dataSource){
  24. console.log(dataSource);
  25. }
  26. },
  27. /**
  28. * 组件的方法列表
  29. */
  30. methods: {
  31. }
  32. })