Blame view

src/layout/components/Settings/index.vue 3.24 KB
d7d9c38c2   Adam   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
25
26
27
28
29
30
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
  <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>
        <a v-if="isShowJob" href="https://panjiachen.github.io/vue-element-admin-site/zh/job/" target="_blank" class="job-link">
          <el-alert
            title="部门目前非常缺人!有兴趣的可以点击了解详情。坐标: 字节跳动"
            type="success"
            :closable="false"
          />
        </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>