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.
 
 
 

64 lines
1.0 KiB

  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. console.log(process.env.VUE_APP_BASE_API, 'this is process.env.VUE_APP_BASE_API' + process.env.VUE_APP_BASE_API)
  16. },
  17. methods: {}
  18. }
  19. </script>
  20. <style lang="scss">
  21. #app {
  22. width: 100%;
  23. height: 100%;
  24. overflow: hidden;
  25. }
  26. .el-tooltip__popper {
  27. max-width: 300px;
  28. }
  29. .el-button--primary{
  30. background-color: #2671E2 !important;
  31. border-color: #2671E2 !important;
  32. }
  33. .el-table__row{
  34. font-size: 14px!important;
  35. }
  36. .nulllist{
  37. width: 100%;
  38. height: 350px;
  39. display: flex;
  40. justify-content: center;
  41. align-items: center;
  42. .imgboxc{
  43. width: 100%;
  44. text-align: center;
  45. .imgboxc-img{
  46. width: 118px;
  47. height: 118px;
  48. }
  49. .nulltext{
  50. width: 100%;
  51. text-align: center;
  52. color: #999999;
  53. font-size: 14px;
  54. }
  55. }
  56. }
  57. .cen-tab,.booxtop,.app-top,.tablebox{
  58. border-radius: 4px !important;
  59. }
  60. </style>