From 45d72a6ef5e8d56108087b0c39bb9d8c532cf854 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Sat, 12 Oct 2019 19:29:31 +0800 Subject: [PATCH] feat: add job --- src/layout/components/Settings/index.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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; + } }