12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <div id="app">
- <div class="main-content">
- <headers></headers>
- <div class="content">
- <router-view />
- </div>
- <div class="footer">
- 成都高新区教师发展中心 成都益教信息技术有限公司技术支持 蜀ICP备05083914
- </div>
- </div>
- </div>
- </template>
- <script>
- import headers from '@/components/smart-class/headers'
- export default {
- components: {
- headers
- },
- data() {
- return {
- }
- },
- methods: {
- },
- mounted() {
- }
- }
- </script>
- <style scoped>
- html, body, #app {
- height: 100% !important;
- user-select: none;
- background: rgb(241,242,243);
- }
- .main-content {
- position: relative;
- width: 100%;
- min-width: 1200px;
- min-height: 768px;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .content {
- width: 100%;
- }
- .logo {
- width: 200px;
- height: 200px;
- margin-bottom: 50px;
- }
- .footer {
- height: 60px;
- text-align: center;
- font-size: 12px;
- color: #aaa;
- line-height: 60px
- }
- </style>
|