index.js 507 B

12345678910111213141516171819202122232425262728293031323334
  1. // components/My_GeneralTemplate/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. /* 盒子下内边距 */
  8. padBot: {
  9. type: String
  10. },
  11. padTop: {
  12. type: String,
  13. value: "40rpx"
  14. },
  15. NavHeight: {
  16. type: Number,
  17. value: 0
  18. }
  19. },
  20. /**
  21. * 组件的初始数据
  22. */
  23. data: {
  24. },
  25. /**
  26. * 组件的方法列表
  27. */
  28. methods: {
  29. }
  30. })