| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <div id="app">
- <keep-alive>
- <router-view v-if="$route.meta.keepAlive" />
- </keep-alive>
- <router-view v-if="!$route.meta.keepAlive" />
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style >
- #app:before{
- content: url('./views/life-line/image/bigBg.png');
- display: none;
- }
- ::-webkit-scrollbar {
- width: 6px;
- height:30px;
- }
- ::-webkit-scrollbar-thumb {
- background-color: rgba(241, 153, 4, 1);
- border-radius: 3px;
- }
- .el-table__body-wrapper::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- }
- .el-table__body-wrapper::-webkit-scrollbar-thumb {
- background-color: rgba(241, 153, 4, 1);
- border-radius: 3px;
- }
- .el-select-dropdown ::-webkit-scrollbar{
- width: 6px;
- height:6px;
- }
- </style>
|