Index.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template class="body">
  2. <div class="wrap">
  3. <div class="i_header header">
  4. <div class="logo">EC-SHOP</div>
  5. </div>
  6. <div style="width: 100%;height: 90px;"></div>
  7. <div style="display: flex;flex-direction: column;align-items: center;">
  8. <img src="../../assets/img/adminBackGround.jpg" style="width: 100%;height: auto;" />
  9. </div>
  10. <div class='footer'>
  11. <a style="color:#000000;" href="https://beian.miit.gov.cn/">辽ICP备2022005510号-1</a>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. data(){
  18. return {
  19. }
  20. },
  21. mounted() {
  22. },
  23. methods: {
  24. goBack(){
  25. this.$router.go(-1);
  26. },
  27. }
  28. }
  29. </script>
  30. <style scoped>
  31. * {
  32. margin: 0;
  33. padding: 0;
  34. }
  35. body {
  36. position: relative;
  37. }
  38. .i_header{width:100%;height:84px;background:url(../../assets/img/head_bg.png);position:fixed; z-index:999999;left:0;top:0;display: flex;align-items: center;}
  39. .header{width:100%;height:90px;background:url(../../assets/img/head_bg.png); z-index:999999;left:0;top:0;border-bottom:1px solid #d2d2d2;display: flex;align-items: center;}
  40. .header .logo{font-size: 28px;margin-left: 40px;color: #333;}
  41. .footer {
  42. bottom: 0;
  43. background-color: #ccc;
  44. font-size: 16px;
  45. display: flex;
  46. padding: 10px 10px;
  47. justify-content: center;
  48. }
  49. .wrap {
  50. overflow-y:scroll;
  51. overflow-x: hidden;
  52. width: 100%;
  53. height: calc(100%);
  54. }
  55. </style>