EmptyRecord.vue 306 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="div common-empty-record">
  3. <text class="i iconfont">&#xe636;</text>
  4. <view class="p">没有找到相关记录</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'EmptyRecord',
  10. data () {
  11. return {
  12. }
  13. },
  14. props: {
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>