dt_no_data.vue 539 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="no_data">
  3. <image :src="image" v-if="image"></image>
  4. <text>{{msg}}</text>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. props: {
  10. msg: {
  11. type: String,
  12. default: ""
  13. },
  14. image: {
  15. type: String,
  16. default: ""
  17. }
  18. },
  19. };
  20. </script>
  21. <style lang="scss">
  22. .no_data {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. image {
  27. width: 215upx;
  28. height: 159upx;
  29. padding-bottom: 22upx;
  30. }
  31. text {
  32. color: #999;
  33. font-size: 24upx;
  34. }
  35. }
  36. </style>