Blame view
src/layout/components/Settings/index.vue
3.26 KB
d7d9c38c2 auto commit the c... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<template> <div class="drawer-container"> <div> <h3 class="drawer-title">{{ $t('settings.title') }}</h3> <div class="drawer-item"> <span>{{ $t('settings.theme') }}</span> <theme-picker style="float: right;height: 26px;margin: -3px 8px 0 0;" @change="themeChange" /> </div> <div class="drawer-item"> <span>{{ $t('settings.tagsView') }}</span> <el-switch v-model="tagsView" class="drawer-switch" /> </div> <div class="drawer-item"> <span>{{ $t('settings.fixedHeader') }}</span> <el-switch v-model="fixedHeader" class="drawer-switch" /> </div> <div class="drawer-item"> <span>{{ $t('settings.sidebarLogo') }}</span> <el-switch v-model="sidebarLogo" class="drawer-switch" /> </div> |
50760eab9 auto commit the c... |
25 26 |
<a v-if="isShowJob" href="https://glass.xiuyetang.com/" target="_blank" class="job-link"> |
d7d9c38c2 auto commit the c... |
27 |
<el-alert |
50760eab9 auto commit the c... |
28 |
title="鱼皮计划极为宏大,而且极为可行,我们要努力写代码,尽快打通任督二脉,要做好很有钱的思想准备" |
d7d9c38c2 auto commit the c... |
29 |
type="success" |
50760eab9 auto commit the c... |
30 |
:closable="true" |
d7d9c38c2 auto commit the c... |
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
/> </a> <div v-if="lang === 'zh'" class="drawer-item"> <span>菜单支持拼音搜索</span> <el-switch v-model="supportPinyinSearch" class="drawer-switch" /> </div> </div> </div> </template> <script> import ThemePicker from '@/components/ThemePicker' export default { components: { ThemePicker }, data() { return {} }, computed: { isShowJob() { return this.$store.getters.language === 'zh' }, fixedHeader: { get() { return this.$store.state.settings.fixedHeader }, set(val) { this.$store.dispatch('settings/changeSetting', { key: 'fixedHeader', value: val }) } }, tagsView: { get() { return this.$store.state.settings.tagsView }, set(val) { this.$store.dispatch('settings/changeSetting', { key: 'tagsView', value: val }) } }, sidebarLogo: { get() { return this.$store.state.settings.sidebarLogo }, set(val) { this.$store.dispatch('settings/changeSetting', { key: 'sidebarLogo', value: val }) } }, supportPinyinSearch: { get() { return this.$store.state.settings.supportPinyinSearch }, set(val) { this.$store.dispatch('settings/changeSetting', { key: 'supportPinyinSearch', value: val }) } }, lang() { return this.$store.getters.language } }, methods: { themeChange(val) { this.$store.dispatch('settings/changeSetting', { key: 'theme', value: val }) } } } </script> <style lang="scss" scoped> .drawer-container { padding: 24px; font-size: 14px; line-height: 1.5; word-wrap: break-word; .drawer-title { margin-bottom: 12px; color: rgba(0, 0, 0, .85); font-size: 14px; line-height: 22px; } .drawer-item { color: rgba(0, 0, 0, .65); font-size: 14px; padding: 12px 0; } .drawer-switch { float: right } .job-link{ display: block; position: absolute; width: 100%; left: 0; bottom: 0; } } </style> |