Blame view

ant-design-vue-jeecg/src/components/setting/SettingDrawer.vue 6.68 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <div class="setting-drawer">
    <a-drawer
      width="300"
      placement="right"
      :closable="false"
      @close="onClose"
      :visible="visible"
      style="height: 100%;overflow: auto;"
    >
      <div class="setting-drawer-index-content">
        <div :style="{ marginBottom: '24px' }">
13
          <h4 class="setting-drawer-index-title">{{ $t('system.languageSettings') }}</h4>
14
15
16
17
18
19
20
21
          <a-list-item>
            <a-select size="small" style="width: 80px;" :defaultValue="$t('lang')" @change="handleLanguageChange">
              <a-select-option value="zh-CN">中文</a-select-option>
              <a-select-option value="en-US">English</a-select-option>
            </a-select>
          </a-list-item>
        </div>
        <div :style="{ marginBottom: '24px' }">
22
          <h4 class="setting-drawer-index-title">{{ $t('system.themeSettings') }}</h4>
肖超群 authored
23
24
          <div class="setting-drawer-index-blockChecbox">
            <a-tooltip>
25
              <template slot="title"> {{ $t('system.darkModeMenuStyle') }} </template>
肖超群 authored
26
              <div class="setting-drawer-index-item" @click="handleMenuTheme('dark')">
谭毅彬 authored
27
                <img src="https://gw.alipayobjects.com/zos/rmsportal/LCkqqYNmvBEbokSDscrm.svg" alt="dark" />
肖超群 authored
28
                <div class="setting-drawer-index-selectIcon" v-if="navTheme === 'dark'">
谭毅彬 authored
29
                  <a-icon type="check" />
肖超群 authored
30
31
32
33
                </div>
              </div>
            </a-tooltip>
            <a-tooltip>
34
              <template slot="title"> {{ $t('system.lightModeMenuStyle') }} </template>
肖超群 authored
35
              <div class="setting-drawer-index-item" @click="handleMenuTheme('light')">
谭毅彬 authored
36
                <img src="https://gw.alipayobjects.com/zos/rmsportal/jpRkZQMyYRryryPNtyIC.svg" alt="light" />
肖超群 authored
37
                <div class="setting-drawer-index-selectIcon" v-if="navTheme !== 'dark'">
谭毅彬 authored
38
                  <a-icon type="check" />
肖超群 authored
39
40
41
42
43
                </div>
              </div>
            </a-tooltip>
          </div>
        </div>
谭毅彬 authored
44
        <a-divider />
肖超群 authored
45
        <div :style="{ marginBottom: '24px' }">
46
          <h4 class="setting-drawer-index-title">{{ $t('system.otherSettings') }}</h4>
肖超群 authored
47
48
49
          <div>
            <a-list :split="false">
              <a-list-item>
谭毅彬 authored
50
                <a-switch slot="actions" size="small" :defaultChecked="colorWeak" @change="onColorWeak" />
肖超群 authored
51
                <a-list-item-meta>
52
                  <div slot="title">{{ $t('system.colorBlindnessMode') }}</div>
肖超群 authored
53
54
55
                </a-list-item-meta>
              </a-list-item>
              <a-list-item>
谭毅彬 authored
56
                <a-switch slot="actions" size="small" :defaultChecked="multipage" @change="onMultipageWeak" />
肖超群 authored
57
                <a-list-item-meta>
58
                  <div slot="title">{{ $t('system.multiTabMode') }}</div>
肖超群 authored
59
60
61
62
63
64
65
                </a-list-item-meta>
              </a-list-item>
            </a-list>
          </div>
        </div>
      </div>
      <div class="setting-drawer-index-handle" @click="toggle" v-if="visible">
谭毅彬 authored
66
        <a-icon type="close" />
肖超群 authored
67
68
69
70
71
72
      </div>
    </a-drawer>
  </div>
</template>

<script>
肖超群 authored
73
74
75
import DetailList from '@/components/tools/DetailList'
import SettingItem from '@/components/setting/SettingItem'
import config from '@/defaultSettings'
谭毅彬 authored
76
77
78
import { updateTheme, updateColorWeak, colorList } from '@/components/tools/setting'
import { mixin, mixinDevice } from '@/utils/mixin.js'
import { triggerWindowResizeEvent } from '@/utils/util'
肖超群 authored
79
肖超群 authored
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
export default {
  components: {
    DetailList,
    SettingItem
  },
  mixins: [mixin, mixinDevice],
  data() {
    return {
      visible: false,
      colorList,
      dataFixSiderbar: false
    }
  },
  mounted() {
    // 当主题色不是默认色时,才进行主题编译
    if (this.primaryColor !== config.primaryColor) {
      updateTheme(this.primaryColor)
    }
    if (this.colorWeak !== config.colorWeak) {
      updateColorWeak(this.colorWeak)
    }
    if (this.multipage !== config.multipage) {
      this.$store.dispatch('ToggleMultipage', this.multipage)
肖超群 authored
103
    }
肖超群 authored
104
105
  },
  methods: {
谭毅彬 authored
106
    handleLanguageChange(lang) {
107
      this.$ls.set('language', lang)
谭毅彬 authored
108
109
      window.location.reload()
    },
肖超群 authored
110
111
    showDrawer() {
      this.visible = true
肖超群 authored
112
    },
肖超群 authored
113
114
    onClose() {
      this.visible = false
肖超群 authored
115
    },
肖超群 authored
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
    toggle() {
      this.visible = !this.visible
    },
    onColorWeak(checked) {
      this.$store.dispatch('ToggleWeak', checked)
      updateColorWeak(checked)
    },
    onMultipageWeak(checked) {
      this.$store.dispatch('ToggleMultipage', checked)
    },
    handleMenuTheme(theme) {
      this.$store.dispatch('ToggleTheme', theme)
    },
    handleLayout(mode) {
      this.$store.dispatch('ToggleLayoutMode', mode)
      // 因为顶部菜单不能固定左侧菜单栏,所以强制关闭
      this.handleFixSiderbar(false)
      // 触发窗口resize事件
      triggerWindowResizeEvent()
    },
    handleContentWidthChange(type) {
      this.$store.dispatch('ToggleContentWidth', type)
    },
    changeColor(color) {
      if (this.primaryColor !== color) {
        this.$store.dispatch('ToggleColor', color)
        updateTheme(color)
肖超群 authored
143
144
      }
    },
肖超群 authored
145
146
147
148
149
150
151
152
153
154
155
156
157
    handleFixedHeader(fixed) {
      this.$store.dispatch('ToggleFixedHeader', fixed)
    },
    handleFixedHeaderHidden(autoHidden) {
      this.$store.dispatch('ToggleFixedHeaderHidden', autoHidden)
    },
    handleFixSiderbar(fixed) {
      if (this.layoutMode === 'topmenu') {
        fixed = false
      }
      this.dataFixSiderbar = fixed
      this.$store.dispatch('ToggleFixSiderbar', fixed)
    }
谭毅彬 authored
158
  }
肖超群 authored
159
}
肖超群 authored
160
161
162
</script>

<style lang="less" scoped>
肖超群 authored
163
164
165
.setting-drawer-index-content {
  .setting-drawer-index-blockChecbox {
    display: flex;
肖超群 authored
166
肖超群 authored
167
168
169
170
171
    .setting-drawer-index-item {
      margin-right: 16px;
      position: relative;
      border-radius: 4px;
      cursor: pointer;
肖超群 authored
172
肖超群 authored
173
174
      img {
        width: 48px;
肖超群 authored
175
176
      }
肖超群 authored
177
178
179
180
181
182
183
184
185
      .setting-drawer-index-selectIcon {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        padding-top: 15px;
        padding-left: 24px;
        height: 100%;
        color: #1890ff;
肖超群 authored
186
        font-size: 14px;
肖超群 authored
187
        font-weight: 700;
肖超群 authored
188
189
190
191
      }
    }
  }
肖超群 authored
192
193
194
195
196
  .setting-drawer-theme-color-colorBlock {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    float: left;
肖超群 authored
197
    cursor: pointer;
肖超群 authored
198
199
200
    margin-right: 8px;
    padding-left: 0px;
    padding-right: 0px;
肖超群 authored
201
    text-align: center;
肖超群 authored
202
203
    color: #fff;
    font-weight: 700;
肖超群 authored
204
205

    i {
肖超群 authored
206
      font-size: 14px;
肖超群 authored
207
208
    }
  }
肖超群 authored
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
}

.setting-drawer-index-handle {
  position: absolute;
  top: 240px;
  background: #1890ff;
  width: 48px;
  height: 48px;
  right: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1001;
  text-align: center;
  font-size: 16px;
  border-radius: 4px 0 0 4px;

  i {
    color: rgb(255, 255, 255);
    font-size: 20px;
  }
}
肖超群 authored
233
</style>