diff --git a/src/layout/components/Settings/index.vue b/src/layout/components/Settings/index.vue
index 19e4e68b..8dab8cbf 100644
--- a/src/layout/components/Settings/index.vue
+++ b/src/layout/components/Settings/index.vue
@@ -22,6 +22,13 @@
{{ $t('settings.sidebarLogo') }}
+
+
+
@@ -36,6 +43,9 @@ export default {
return {}
},
computed: {
+ isShowJob() {
+ return this.$store.getters.language === 'zh'
+ },
fixedHeader: {
get() {
return this.$store.state.settings.fixedHeader
@@ -104,5 +114,13 @@ export default {
.drawer-switch {
float: right
}
+
+ .job-link{
+ display: block;
+ position: absolute;
+ width: 100%;
+ left: 0;
+ bottom: 0;
+ }
}