App.vue 866 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. import { delAllTabsKey } from "@/util/keyData";
  8. export default {
  9. name: "app",
  10. data() {
  11. return {};
  12. },
  13. watch: {
  14. },
  15. mounted() {
  16. //刷新浏览器清除标签key
  17. delAllTabsKey("ALL");
  18. },
  19. methods: {},
  20. computed: {
  21. }
  22. };
  23. </script>
  24. <style lang="scss">
  25. #app {
  26. width: 100%;
  27. height: 100%;
  28. overflow: hidden;
  29. }
  30. .el-input.is-disabled .el-input__inner {
  31. color: #000000 !important;
  32. background-color: #fafafa !important;
  33. }
  34. .el-textarea.is-disabled .el-textarea__inner {
  35. color: #000000 !important;
  36. background-color: #fafafa !important;
  37. }
  38. .el-range-editor.is-disabled input {
  39. color: #000000 !important;
  40. background-color: #fafafa !important;
  41. }
  42. .el-dialog__headerbtn {
  43. top: 9px !important;
  44. }
  45. .el-dialog__headerbtn {
  46. margin-top: 5px !important;
  47. }
  48. </style>