update gui

更新ui展示
This commit is contained in:
谢小军
2020-01-21 17:36:22 +08:00
parent b72a40e40e
commit bb224315a1
9 changed files with 106 additions and 5 deletions

View File

@@ -52,3 +52,11 @@ func requireValidator(value string) bool {
}
return true
}
func getBool(bstr string) bool {
if bstr == "true" || bstr == " 是" {
return true
}
return false
}