App.vue 751 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. mounted() {
  15. //刷新浏览器清除标签key
  16. delAllTabsKey("ALL");
  17. },
  18. methods: {},
  19. computed: {}
  20. };
  21. </script>
  22. <style lang="scss">
  23. #app {
  24. width: 100%;
  25. height: 100%;
  26. overflow: hidden;
  27. }
  28. .el-input.is-disabled .el-input__inner {
  29. color: #000000 !important;
  30. background-color: #fafafa !important;
  31. }
  32. .el-textarea.is-disabled .el-textarea__inner {
  33. color: #000000 !important;
  34. background-color: #fafafa !important;
  35. }
  36. .el-dialog__headerbtn {
  37. top: 9px !important;
  38. }
  39. .el-dialog__headerbtn{
  40. margin-top: 5px !important;
  41. }
  42. </style>