index.js 564 B

12345678910111213141516171819202122232425262728
  1. Component({
  2. properties: {
  3. text: {
  4. type: String,
  5. value: "暂无数据"
  6. },
  7. marTop: {
  8. type: String,
  9. value: "150rpx"
  10. },
  11. sonMarTop: {
  12. type: String,
  13. value: "20"
  14. },
  15. icon: {
  16. type: String,
  17. value: 'icon-zanwushuju'
  18. }
  19. },
  20. lifetimes: {
  21. attached: function () {
  22. getApp().globalData.Language.getLanguagePackage(this)
  23. },
  24. },
  25. options: {
  26. addGlobalClass: true
  27. },
  28. })