App.vue 596 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "app",
  9. data() {
  10. return {};
  11. },
  12. methods: {
  13. }
  14. };
  15. </script>
  16. <style rel="stylesheet/scss" lang="scss">
  17. body{
  18. margin: 0px;
  19. }
  20. #app {
  21. margin: 0px;
  22. padding: 0px;
  23. background: #efefef;
  24. position:absolute;
  25. top:0px;
  26. left:0px;
  27. right:0px;
  28. bottom:0px;
  29. display:flex;
  30. flex-direction: column;
  31. }
  32. .sticky-bg{
  33. background-color:#fff;
  34. }
  35. .el-table__header thead tr th{
  36. background: #f1f6fa !important;
  37. padding: 10px 0px 10px 0px;
  38. }
  39. .el-table{
  40. margin-top:5px;
  41. }
  42. </style>