homeOne.js 348 B

12345678910111213141516171819202122232425262728293031
  1. // components/blocks/home1/home_one.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. items: {
  8. type: Array
  9. },
  10. summery:{
  11. type:Array
  12. },
  13. special_datas:{
  14. type:Object
  15. }
  16. },
  17. /**
  18. * 组件的初始数据
  19. */
  20. data: {
  21. },
  22. /**
  23. * 组件的方法列表
  24. */
  25. methods: {
  26. }
  27. })