12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <div id="app">
- <app-layout></app-layout>
- </div>
- </template>
- <script>
- import AppLayout from "@/framework/show/";
- import '@/assets/style/reset.less'
- import '@/assets/style/public.less'
- import '@/assets/style/iconfont/iconfont.css'
- export default {
- components: {
- AppLayout
- },
- mounted(){
- if (this.g_isMobile) {
- window.location.href = window.location.href.replace('show_single.html','showMobile_single.html')
- }
- }
- };
- </script>
- <style lang="less">
- html,
- body,
- #app {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- body {
- margin: 0;
- color: #fff;
- font-size: 14px;
- line-height: normal;
- background-color: rgb(38, 39, 41);
- user-select: none;
- font-family: OpenSans, sans-serif;
- }
- ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- img {
- border: 0;
- outline: 0;
- }
- </style>
|