| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- data() {
- return {};
- },
- methods: {},
- mounted() {}
- };
- </script>
- <style lang="less">
- @import './assets/css/global.css';
- html,
- body {
- height: 100%;
- width: 100%;
- margin: 0;
- #app {
- height: 100%;
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- background: #f1f1f1;
- overflow: hidden;
- }
- }
- /deep/.customClass {
- .el-loading-spinner {
- i.el-icon-loading {
- color: #dcdfe6 !important;
- }
- .el-loading-text {
- color: #dcdfe6 !important;
- }
- }
- }
- .el-breadcrumb__inner:hover {
- cursor: default !important;
- }
- // 所有卡片
- .custom-ffffff .el-card.is-always-shadow {
- border-radius: 10px;
- }
- // 所有弹框
- .custom-ffffff .el-dialog {
- border-radius: 5px;
- }
- .custom-ffffff .el-dialog__header {
- border-radius: 5px 5px 0 0;
- }
- /*全局滚动条样式*/
- ::-webkit-scrollbar {
- width: 5px;
- height: 14px;
- }
- ::-webkit-scrollbar-thumb {
- /* background-color: #01c8dc;
- border-radius: 3px; */
- background-color: #b6b6b6;
- }
- </style>
|