| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: "app",
- data() {
- return {};
- },
- methods: {
-
- }
- };
- </script>
- <style rel="stylesheet/scss" lang="scss">
- body{
- margin: 0px;
- }
- #app {
- margin: 0px;
- padding: 0px;
- background: #efefef;
- position:absolute;
- top:0px;
- left:0px;
- right:0px;
- bottom:0px;
- display:flex;
- flex-direction: column;
- }
- .sticky-bg{
- background-color:#fff;
- }
- .el-table__header thead tr th{
- background: #f1f6fa !important;
- padding: 10px 0px 10px 0px;
- }
- .el-table{
- margin-top:5px;
- }
- </style>
|