footer.js 761 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Component({
  2. externalClasses: ['tui-footer-class'],
  3. properties: {
  4. //type target url delta appid path extradata bindsuccess bindfail text color size
  5. //链接设置 数据格式对应上面注释的属性值
  6. navigate: {
  7. type: Array,
  8. value: []
  9. },
  10. //底部文本
  11. copyright: {
  12. type: String,
  13. value: "All Rights Reserved."
  14. },
  15. //copyright 字体颜色
  16. color: {
  17. type: String,
  18. value: "#A7A7A7"
  19. },
  20. //copyright 字体大小
  21. size: {
  22. type: Number,
  23. value: 24
  24. },
  25. //footer背景颜色
  26. bgcolor: {
  27. type: String,
  28. value: "none"
  29. },
  30. //是否固定在底部
  31. fixed: {
  32. type: Boolean,
  33. value: true
  34. }
  35. },
  36. data: {
  37. },
  38. methods: {}
  39. })