fix: 修复背景颜色问题

This commit is contained in:
@changcode
2022-08-26 17:39:23 +08:00
parent ad6a11bcae
commit 9dfda197f2
2 changed files with 2 additions and 3 deletions

View File

@@ -49,8 +49,7 @@ $--color-monitor: #98AEC5; //全局停用色灰色
$--chart-single-value-icon-background-color: #E8F6FF; $--chart-single-value-icon-background-color: #E8F6FF;
//$--content-right-background-color: #fff; //右侧背景色 $--content-right-background-color: #fff; //右侧背景色
$--content-right-background-color: #EFF2F5;
// 空白背景色 // 空白背景色
$--background-color-empty: #fffffe; $--background-color-empty: #fffffe;

View File

@@ -20,7 +20,7 @@ export default {
entityDetectionStyle () { entityDetectionStyle () {
const route = this.$route.name !== undefined ? this.$route.name : this.$route const route = this.$route.name !== undefined ? this.$route.name : this.$route
if (listScrollPath.indexOf(route.path) > -1) { if (listScrollPath.indexOf(route.path) > -1) {
return 'overflow:auto;' return 'overflow:auto;background-color: #EFF2F5;'
} else { } else {
return '' return ''
} }