| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- import axios from 'axios'
- import { MessageBox } from 'element-ui'
- export default {
- name: 'App',
- data(){
- return{
- innerHeight:window.innerHeight,
- innerWidth:window.innerWidth,
- timer:null,
- }
- },
- metaInfo() {
- return {
- title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
- titleTemplate: title => {
- return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
- },
- }
- },
- mounted(){
- },
- methods:{
- },
- }
- </script>
- <style>
- #app{
- /*分辨率调整*/
- /*width: 3840px;*/
- /*height: 2160px;*/
- width: 3834px;
- height: 2154px;
- display: flex;
- flex:1;
- overflow: hidden;
- }
- .el-drawer__container,.el-dialog__wrapper,.el-message-box__wrapper{
- background: rgba(0,0,0,0.4);
- }
- .codeHtmlPage{
- transform: scale(1)!important;
- }
- @font-face {
- font-family: 'alimmFonts';
- src: url('./assets/fonts/alimm.ttf') format('truetype'); /* 根据实际路径调整 */
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-family: 'ysFonts';
- src: url('./assets/fonts/ys.ttf') format('truetype'); /* 根据实际路径调整 */
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-family: 'Alimama ShuHeiTi';
- src: url('./assets/fonts/AlimamaShuHeiTi-Bold.ttf') format('truetype'); /* 标题 */
- font-weight: normal;
- font-style: normal;
- /*
- font-family: AlimamaShuHeiTi;
- */
- }
- @font-face {
- font-family: 'YouSheBiaoTiHei';
- src: url('./assets/fonts/YouSheBiaoTiHei.ttf') format('truetype'); /* 数字 */
- font-weight: normal;
- font-style: normal;
- /*
- font-family: YouSheBiaoTiHei;
- */
- }
- @font-face {
- font-family: 'Source Han Sans CN';
- src: url('./assets/fonts/SOURCEHANSANSCN.OTF') format('truetype'); /* 正文 */
- font-weight: normal;
- font-style: normal;
- /*
- font-family: SOURCEHANSANSCN;
- */
- }
- </style>
|