empty.js 263 B

123456789101112131415161718
  1. Component({
  2. properties: {
  3. top:{
  4. type:String,
  5. value:0
  6. },
  7. tipsImg: {
  8. type: String,
  9. value: '../../imgs/empty.png'
  10. },
  11. tipsText: {
  12. type: String,
  13. value: '暂无数据~'
  14. }
  15. },
  16. data: {},
  17. methods: {}
  18. })