dk-empty.js 810 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*******************************************************************************
  2. * Copyright(c) 2022 dongke All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:
  5. * 2.功能描述:组件-空状态时的占位提示。
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * admin 2022-11-17 1.00 新建
  9. *******************************************************************************/
  10. Component({
  11. /**
  12. * 组件的属性列表
  13. */
  14. properties: {
  15. description: {
  16. type: String,
  17. value: '暂无数据'
  18. },
  19. image: {
  20. type: String,
  21. value: 'default'
  22. },
  23. },
  24. options: {
  25. multipleSlots: true
  26. },
  27. /**
  28. * 组件的初始数据
  29. */
  30. data: {
  31. },
  32. /**
  33. * 组件的方法列表
  34. */
  35. methods: {
  36. }
  37. })