diff --git a/jero-web/src/App.vue b/jero-web/src/App.vue index eba4e5b68..8834ccdf6 100644 --- a/jero-web/src/App.vue +++ b/jero-web/src/App.vue @@ -81,7 +81,9 @@ watch: { $route: function(val) { this.$nextTick(() => { - this.$watermark.set(this.userInfo().username + ' ' + this.userInfo().realname) + if (this.userInfo() && this.userInfo().username) { + this.$watermark.set(this.userInfo().username + ' ' + this.userInfo().realname) + } }) } }, @@ -97,9 +99,11 @@ font-family: 'BlueSkyNoto'; src: url("./assets/fontStyle/BlueSkyNotoRegular.otf"); } + * { font-family: 'BlueSkyNoto'; } + body { font-family: "Blue Sky Noto" !important; } diff --git a/jero-web/src/components/libraryPush/index.vue b/jero-web/src/components/libraryPush/index.vue index 2c8f97fd3..8c530226c 100644 --- a/jero-web/src/components/libraryPush/index.vue +++ b/jero-web/src/components/libraryPush/index.vue @@ -10,7 +10,7 @@ :visible="visible" style="height: 100%;overflow: auto;padding-bottom: 53px;"> - +
{