App.vue 761 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div id="app">
  3. <keep-alive>
  4. <router-view v-if="$route.meta.keepAlive" />
  5. </keep-alive>
  6. <router-view v-if="!$route.meta.keepAlive" />
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'App'
  12. }
  13. </script>
  14. <style >
  15. #app:before{
  16. content: url('./views/life-line/image/bigBg.png');
  17. display: none;
  18. }
  19. ::-webkit-scrollbar {
  20. width: 6px;
  21. height:30px;
  22. }
  23. ::-webkit-scrollbar-thumb {
  24. background-color: rgba(241, 153, 4, 1);
  25. border-radius: 3px;
  26. }
  27. .el-table__body-wrapper::-webkit-scrollbar {
  28. width: 8px;
  29. height: 8px;
  30. }
  31. .el-table__body-wrapper::-webkit-scrollbar-thumb {
  32. background-color: rgba(241, 153, 4, 1);
  33. border-radius: 3px;
  34. }
  35. .el-select-dropdown ::-webkit-scrollbar{
  36. width: 6px;
  37. height:6px;
  38. }
  39. </style>