app-load-text.vue 416 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="app-load-text">
  3. <icon class="app-load image-no-rep image-cover"></icon>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'app-load-data'
  9. }
  10. </script>
  11. <style scoped lang="scss">
  12. .app-load-text {
  13. width: #{750rpx};
  14. text-align: center;
  15. height: #{42rpx};
  16. }
  17. .app-load {
  18. width: #{70rpx};
  19. height: #{42rpx};
  20. background-image: url("./image/load.gif");
  21. }
  22. </style>