You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.vue 827 B

3 years ago
3 years ago
2 years ago
3 years ago
2 years ago
2 years ago
2 years ago
3 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. computed: {},
  13. watch: {},
  14. created() {
  15. },
  16. methods: {}
  17. }
  18. </script>
  19. <style lang="scss">
  20. #app {
  21. width: 100%;
  22. height: 100%;
  23. overflow: hidden;
  24. }
  25. .el-tooltip__popper {
  26. max-width: 300px;
  27. }
  28. .el-table__row{
  29. font-size: 14px!important;
  30. }
  31. .nulllist{
  32. width: 100%;
  33. height: 350px;
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. .imgboxc{
  38. width: 100%;
  39. text-align: center;
  40. .imgboxc-img{
  41. width: 118px;
  42. height: 118px;
  43. }
  44. .nulltext{
  45. width: 100%;
  46. text-align: center;
  47. color: #999999;
  48. font-size: 14px;
  49. }
  50. }
  51. }
  52. .cen-tab,.booxtop,.app-top,.tablebox{
  53. border-radius: 4px !important;
  54. }
  55. </style>