App.vue 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style lang="less">
  12. @import "./assets/css/global.css";
  13. html,
  14. body {
  15. height: 100%;
  16. width: 100%;
  17. margin: 0;
  18. #app {
  19. height: 100%;
  20. width: 100%;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. background: #f1f1f1;
  25. }
  26. }
  27. /deep/.customClass {
  28. .el-loading-spinner {
  29. i.el-icon-loading {
  30. color: #dcdfe6 !important;
  31. }
  32. .el-loading-text {
  33. color: #dcdfe6 !important;
  34. }
  35. }
  36. }
  37. .el-breadcrumb__inner:hover {
  38. cursor: default !important;
  39. }
  40. // 所有卡片
  41. .custom-ffffff .el-card.is-always-shadow {
  42. border-radius: 10px;
  43. }
  44. // 所有弹框
  45. .custom-ffffff .el-dialog {
  46. border-radius: 5px;
  47. }
  48. .custom-ffffff .el-dialog__header {
  49. border-radius: 5px 5px 0 0;
  50. }
  51. </style>