App.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <script setup>
  2. import zhCN from 'ant-design-vue/es/locale/zh_CN'
  3. </script>
  4. <template>
  5. <a-config-provider :locale="zhCN">
  6. <router-view v-slot="{ Component }">
  7. <keep-alive>
  8. <component :is="Component" :key="$route.name" v-if="$route.meta.keepAlive" />
  9. </keep-alive>
  10. <component :is="Component" :key="$route.name" v-if="!$route.meta.keepAlive" />
  11. </router-view>
  12. </a-config-provider>
  13. </template>
  14. <style lang="scss">
  15. body {
  16. margin: 0;
  17. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  18. }
  19. .w_1300 {
  20. width: 1300px;
  21. margin: 0 auto;
  22. }
  23. .w_1700 {
  24. max-width: 1700px;
  25. margin: 0 auto;
  26. }
  27. .textOne {
  28. overflow: hidden;
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. }
  32. .textMore {
  33. display: -webkit-box;
  34. -webkit-line-clamp: 2;
  35. -webkit-box-orient: vertical;
  36. overflow: hidden;
  37. text-overflow: ellipsis;
  38. }
  39. /* 自定义整个滚动条 */
  40. ::-webkit-scrollbar {
  41. width: 5px; /* 滚动条宽度 */
  42. }
  43. /* 自定义滚动条轨道 */
  44. ::-webkit-scrollbar-track {
  45. background: #f1f1f1; /* 轨道颜色 */
  46. }
  47. /* 自定义滚动条的滑块(thumb) */
  48. ::-webkit-scrollbar-thumb {
  49. background: #1c66e7; /* 滑块颜色 */
  50. }
  51. /* 当hover或active状态时,自定义滑块的颜色 */
  52. ::-webkit-scrollbar-thumb:hover {
  53. background: #4826da;
  54. }
  55. </style>