12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <script setup>
- import zhCN from 'ant-design-vue/es/locale/zh_CN'
- </script>
- <template>
- <a-config-provider :locale="zhCN">
- <router-view v-slot="{ Component }">
- <keep-alive>
- <component :is="Component" :key="$route.name" v-if="$route.meta.keepAlive" />
- </keep-alive>
- <component :is="Component" :key="$route.name" v-if="!$route.meta.keepAlive" />
- </router-view>
- </a-config-provider>
- </template>
- <style lang="scss">
- body {
- margin: 0;
- 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';
- }
- .w_1300 {
- width: 1300px;
- margin: 0 auto;
- }
- .w_1700 {
- max-width: 1700px;
- margin: 0 auto;
- }
- .textOne {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .textMore {
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- /* 自定义整个滚动条 */
- ::-webkit-scrollbar {
- width: 5px; /* 滚动条宽度 */
- }
- /* 自定义滚动条轨道 */
- ::-webkit-scrollbar-track {
- background: #f1f1f1; /* 轨道颜色 */
- }
- /* 自定义滚动条的滑块(thumb) */
- ::-webkit-scrollbar-thumb {
- background: #1c66e7; /* 滑块颜色 */
- }
- /* 当hover或active状态时,自定义滑块的颜色 */
- ::-webkit-scrollbar-thumb:hover {
- background: #4826da;
- }
- </style>
|