null-data.vue 666 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="bg-white flex-col col-center null-data">
  3. <img :style="imgStyle" class="img-null" :src="img" alt="" />
  4. <div class="muted mt8">{{ text }}</div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. components: {},
  10. props: {
  11. img: {
  12. type: String,
  13. },
  14. text: {
  15. type: String,
  16. default: '暂无数据',
  17. },
  18. imgStyle: {
  19. type: String,
  20. default: '',
  21. },
  22. },
  23. methods: {},
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .null-data {
  28. padding: 100px;
  29. .img-null {
  30. width: 150px;
  31. height: 150px;
  32. }
  33. }
  34. </style>