完成102添加联机日志,报警日志

This commit is contained in:
liub
2026-01-28 16:31:34 +08:00
parent 1b48751944
commit d6ca84170f
16 changed files with 2651 additions and 805 deletions

View File

@ -74,7 +74,7 @@
props: {
dark: {
type: Boolean,
default: false
default: true
},
title: {
type: String,
@ -98,7 +98,7 @@
},
fixed: {
type: [Boolean, String],
default: false
default: true
},
color: {
type: String,
@ -110,7 +110,7 @@
},
statusBar: {
type: [Boolean, String],
default: false
default: true
},
shadow: {
type: [Boolean, String],
@ -118,7 +118,7 @@
},
border: {
type: [Boolean, String],
default: true
default: false
},
height: {
type: [Number, String],
@ -126,11 +126,11 @@
},
leftWidth: {
type: [Number, String],
default: 60
default: 90
},
rightWidth: {
type: [Number, String],
default: 60
default: 90
},
showMenuButtonWidth: {
type: Boolean,
@ -153,7 +153,7 @@
if (this.backgroundColor) {
return this.backgroundColor
} else {
return this.dark ? '#333' : '#FFF'
return this.dark ? '#121212' : '#FFF'
}
}
return this.backgroundColor || '#FFF'