去除大屏表格横线

This commit is contained in:
jiangzhe 2024-06-05 09:07:19 +08:00
parent 654d087bbb
commit e3260087d3
3 changed files with 21 additions and 20 deletions

View File

@ -888,7 +888,7 @@ const rightPie2Option = ref({
type: 'pie',
radius: ['50%', '70%'],
center: ['50%', '50%'],
// color: ['rgb(131,249,103)', '#FBFE27', '#FE5050', '#1DB7E5'], //'#FBFE27','rgb(11,228,96)','#FE5050'
color: ['#AED88F', '#91ACE0', '#FED961', '#FC7100', '#FF0000'], //'#FBFE27','rgb(11,228,96)','#FE5050'
data: [],
roseType: 'radius',
label: {
@ -1253,29 +1253,29 @@ li {
height: 2.375rem;
width: 100%;
overflow: hidden;
}
.scroll .item {
border: 1px solid rgba(255, 255, 255, .1);
padding: .1rem 0;
font-size: .2rem;
color: rgba(255, 255, 255, .6);
display: flex;
align-items: center;
justify-content: space-around;
.item {
padding: .1rem 0;
font-size: .2rem;
color: rgba(255, 255, 255, .6);
display: flex;
align-items: center;
justify-content: space-around;
span:nth-child(1) {
flex: 0 1 60%;
}
span:nth-child(1) {
flex: 0 1 60%;
}
span:nth-child(2) {
flex: 0 1 20%;
}
span:nth-child(2) {
flex: 0 1 20%;
}
span:nth-child(3) {
flex: 0 1 20%;
span:nth-child(3) {
flex: 0 1 20%;
}
}
}
}
}
</style>

View File

@ -207,7 +207,7 @@ const leftPieOption = ref({
type: 'pie',
radius: ['50%', '70%'],
center: ['50%', '50%'],
// color: ['rgb(131,249,103)', '#FBFE27', '#FE5050', '#1DB7E5'], //'#FBFE27','rgb(11,228,96)','#FE5050'
color: [ '#AED88F', '#91ACE0', '#FED961', '#FC7100', '#FF0000'], //'#FBFE27','rgb(11,228,96)','#FE5050'
data: [],
roseType: 'radius',
label: {

View File

@ -30,7 +30,8 @@ export default defineConfig(({ mode, command }: ConfigEnv): UserConfig => {
open: true,
proxy: {
[env.VITE_APP_BASE_API]: {
target: 'http://192.168.123.32:8080',
// target: 'http://192.168.123.32:8080',
target: 'http://localhost:8080',
changeOrigin: true,
ws: true,
rewrite: (path) => path.replace(new RegExp('^' + env.VITE_APP_BASE_API), '')