| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </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;
- }
- }
- /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;
- }
- </style>
|