You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-spms-vue/src/App.vue

83 lines
1.4 KiB
Vue

<template>
<div id="app">
<router-view />
<el-backtop target="#app"></el-backtop>
</div>
</template>
<script>
export default {
name: 'App',
metaInfo() {
return {
title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
titleTemplate: title => {
return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
}
}
}
}
</script>
<style>
/* 滚动条样式 */
::-webkit-scrollbar {
width: 10px; /* 滚动条宽度 */
height: 10px; /* 滚动条高度 */
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
background-color: #f5f5f5; /* 滚动条轨道颜色 */
border-radius: 25px; /* 滚动条轨道圆角 */
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
background-color: #888; /* 滚动条滑块颜色 */
border-radius: 25px; /* 滚动条轨道圆角 */
}
/* 鼠标悬停时滚动条滑块颜色 */
::-webkit-scrollbar-thumb:hover {
background-color: #555; /* 鼠标悬停时滚动条滑块颜色 */
}
.width-full{
width: 100%;
}
.height-full{
height: 100%;
}
.mt15{
margin-top: 15px;
}
.p0{
padding: 0;
}
.p10{
padding: 10px;
}
.m0{
margin: 0;
}
.el-card__header{
padding: 0;
}
.el-table__body-wrapper{
}
.d-block{
display: block;
}
</style>
<style lang="scss">
//tabel样式优化
.el-table th.gutter {
display: table-cell !important;
}
</style>