1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*入口*/
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- mounted: function () {
- var link = document.createElement('link');
- link.type = 'text/css';
- link.id = "theme";
- link.rel = 'stylesheet';
- link.href = './static/css/theme-default.css';
- document.getElementsByTagName("head")[0].appendChild(link);
- },
- }
- </script>
- <style>
- #app {
- width: 100%;
- /* min-width: 1780px; */
- height: 100%;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #2c3e50;
- position:relative;
- }
- /* @font-face {
- font-family: 'iconfont';
- src: url('./assets/iconfont/iconfont.woff2') format('woff2'),
- url('./assets/iconfont/iconfont.woff') format('woff'),
- url('./assets/iconfont/iconfont.ttf') format('ttf');
- }
- .iconfont {
- font-family: "iconfont" !important;
- font-size: 24px !important;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #606266;
- } */
- .icon {
- width: 2em;
- height: 1.6em;
- vertical-align: -0.15em;
- fill: currentColor;
- overflow: hidden;
- cursor: pointer;
- }
- .icon:hover{
-
- }
- .dialoglocation{
- max-height: 600px;
- overflow: auto;
- }
- </style>
|