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
| import {
| setStore,
| getStore,
| removeStore
| } from '@/util/store'
| import website from '@/config/website'
|
|
| const common = {
|
| state: {
| language: getStore({name: 'language'}) || 'zh',
| isCollapse: true,
| isFullScren: false,
| isMenu: true,
| isShade: false,
| screen: -1,
| isLock: getStore({name: 'isLock'}) || false,
| showTag: true,
| showDebug: true,
| showCollapse: true,
| showSearch: true,
| showLock: true,
| showFullScren: true,
| showTheme: true,
| showMenu: true,
| showColor: true,
| colorName: getStore({name: 'colorName'}) || '#409EFF',
| themeName: getStore({name: 'themeName'}) || 'theme-default',
| lockPasswd: getStore({name: 'lockPasswd'}) || '',
| website: website,
| },
| mutations: {
| SET_LANGUAGE: (state, language) => {
| state.language = language
| setStore({
| name: 'language',
| content: state.language
| })
| },
| SET_SHADE: (state, active) => {
| state.isShade = active;
| },
| SET_COLLAPSE: (state) => {
| state.isCollapse = !state.isCollapse;
| },
| SET_FULLSCREN: (state) => {
| state.isFullScren = !state.isFullScren;
| },
| SET_IS_MENU: (state, menu) => {
| state.isMenu = menu;
| },
| SET_LOCK: (state) => {
| state.isLock = true;
| setStore({
| name: 'isLock',
| content: state.isLock,
| type: 'session'
| })
| },
| SET_SCREEN: (state, screen) => {
| state.screen = screen;
| },
| SET_COLOR_NAME: (state, colorName) => {
| state.colorName = colorName;
| setStore({
| name: 'colorName',
| content: state.colorName,
| })
| },
| SET_THEME_NAME: (state, themeName) => {
| state.themeName = themeName;
| setStore({
| name: 'themeName',
| content: state.themeName,
| })
| },
| SET_LOCK_PASSWD: (state, lockPasswd) => {
| state.lockPasswd = lockPasswd;
| setStore({
| name: 'lockPasswd',
| content: state.lockPasswd,
| type: 'session'
| })
| },
| CLEAR_LOCK: (state) => {
| state.isLock = false;
| state.lockPasswd = '';
| removeStore({
| name: 'lockPasswd',
| type: 'session'
| });
| removeStore({
| name: 'isLock',
| type: 'session'
| });
| },
| }
| }
| export default common
|
|