404.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <div class="container">
  3. <p class="content">系统升级中
  4. <br>
  5. 敬请期待</p>
  6. </div>
  7. </template>
  8. <script>
  9. import axios from 'axios';
  10. let qs = require('qs');
  11. import Global from '../Global.js'
  12. export default {
  13. data() {
  14. return {
  15. lists: []
  16. }
  17. },
  18. mounted() {
  19. },
  20. methods: {},
  21. }
  22. </script>
  23. <style scoped>
  24. /*mu-header*/
  25. .mu-primary-color {
  26. line-height: 60px;
  27. height: 60px;
  28. background: url("../static/images/comm/headerBg.png") top center no-repeat;
  29. background-size: 100%;
  30. }
  31. /deep/ .mu-appbar-left {
  32. padding-top: 15px;
  33. }
  34. /deep/ .material-icons {
  35. color: #fff;
  36. }
  37. /deep/ .mu-appbar-title {
  38. text-align: center;
  39. }
  40. #app {
  41. background: cornflowerblue;
  42. }
  43. .container {
  44. width: 100%;
  45. height: 100%;
  46. overflow: hidden;
  47. display: block;
  48. margin: 0 auto;
  49. background: cornflowerblue;
  50. background-image: url("../static/images/404/man.png");
  51. background-position: top center;
  52. background-repeat: no-repeat;
  53. background-size: 100%;
  54. }
  55. .container {
  56. width: 100%;
  57. overflow: hidden;
  58. margin: 0 auto;
  59. text-align: center;
  60. color: #fff;
  61. font-size: 36px;
  62. }
  63. .content {
  64. width: 100%;
  65. overflow: hidden;
  66. display: block;
  67. margin: 0 auto;
  68. margin-top: 27%;
  69. }
  70. </style>