App.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. data() {
  10. return {}
  11. },
  12. methods: {}
  13. }
  14. </script>
  15. <style lang="scss">
  16. .el-dialog {
  17. margin-bottom: 15vh !important;
  18. }
  19. .el-dialog__header {
  20. background: #eef2f8 !important;
  21. }
  22. .el-input {
  23. .el-button {
  24. color: #fff !important;
  25. background-color: #409eff !important;
  26. border-color: transparent !important;
  27. }
  28. }
  29. .el-select-dropdown {
  30. z-index: 999999 !important;
  31. }
  32. .diy-dialog{
  33. .el-dialog__header {
  34. padding: 0 !important;
  35. }
  36. .el-dialog__headerbtn{
  37. z-index: 9999999;
  38. }
  39. .el-dialog__body{
  40. padding: 0 !important;
  41. }
  42. .box-card{
  43. margin-bottom: 0 !important;
  44. }
  45. .el-table-column--selection{
  46. .cell{
  47. padding: 0 10px !important;
  48. }
  49. }
  50. .el-form-item__label{
  51. padding-bottom: 0 !important;
  52. }
  53. .el-table__cell{
  54. padding: 0 !important;
  55. }
  56. .is-center{
  57. .text-view{
  58. div{
  59. width: 100%;
  60. text-align: center !important;
  61. }
  62. }
  63. }
  64. }
  65. .cartographer {
  66. .el-dialog__wrapper {
  67. width: 100% !important;
  68. height: calc(100% - 5px) !important;
  69. position: absolute !important;
  70. top: 5px !important;
  71. }
  72. .el-dialog {
  73. margin: 0 !important;
  74. width: 100%;
  75. height: 100%;
  76. }
  77. .el-dialog__body {
  78. width: 100%;
  79. height: calc(100% - 55px - 58px);
  80. position: relative;
  81. box-sizing: border-box;
  82. padding: 20px;
  83. overflow-y: auto;
  84. }
  85. .el-dialog__headerbtn{
  86. z-index: 99999 !important;
  87. }
  88. .el-dialog__footer{
  89. background: #fff !important;
  90. }
  91. }
  92. .custom-tree-node{
  93. .el-input__inner{
  94. border: none !important;
  95. padding: 0 !important;
  96. width: auto !important;
  97. }
  98. }
  99. </style>