home.vue 601 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div class="flex-box-v flex-center-center">
  3. <div class="data-all">
  4. <img src="./assets/image/init.gif" class="appImg" />
  5. <div>管理执行难,就用功道云</div>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. };
  14. },
  15. watch: {},
  16. mounted() {
  17. },
  18. methods: {
  19. }
  20. };
  21. </script>
  22. <style scoped="scoped">
  23. .refresh {
  24. margin-top: 100px;
  25. width: 100px;
  26. }
  27. .appImg {
  28. width: 200px;
  29. height: 200px;
  30. }
  31. .noData {
  32. text-align: center;
  33. position: fixed;
  34. left: 0;
  35. top: 0;
  36. right: 0;
  37. bottom: 0;
  38. }
  39. .data-all {
  40. margin-bottom: 10%;
  41. color: #595959;
  42. }
  43. </style>