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
import "./index.less";
import ThemeColor from "./ThemeColor";
import BlockChecbox from "./BlockChecbox";
import Vue from 'vue';
import { Drawer, Modal, Divider, message } from "ant-design-vue";
import { mapGetters } from "vuex";
const Body = {
props: ["title"],
render: function render() {
var h = arguments[0];
const { $slots, title } = this;
return h("div", { style: { marginBottom: 24 } }, [
h("h3", { class: "title" }, title),
$slots["default"],
]);
},
};
Vue.use(Drawer)
Vue.use(Modal)
const SettingDrawer = {
// data: () => ({
// primaryColor: "#42b983",
// blockChecbox: "sidemenu"
// }),
props: ["collapse"],
computed: {
...mapGetters({
settings: "global/settings",
}),
},
methods: {
changeSetting(key, value) {
const nextState = this.settings;
nextState[key] = value;
if (key === "layout") {
nextState.contentWidth = value === "topmenu" ? "Fixed" : "Fluid";
}
else if (key === 'fixedHeader' && !value) {
nextState.autoHideHeader = false;
}
// console.log(this.settings);
// console.log(nextState);
this.$store.commit('global/UpdateDefaultSettings', this.s)
this.$store.commit('global/UpdateDefaultSettings', nextState)
console.log(key);
console.log(value);
message.loading("正在编译主题!", 3);
this.$store.dispatch("global/defaultSettings", true);
},
togglerContent() {
this.$parent.collapse = !this.collapse;
},
},
render() {
const { collapse } = this;
const { primaryColor, layout, navTheme } = this.settings;
return (
<Drawer
title="我是一个抽屉"
placement="right"
closable={false}
onClose={this.togglerContent}
visible={collapse}
width={300}
>
<div class="setting-drawer content">
<Body title={this.$t("app.setting.pagestyle")}>
<BlockChecbox
list={[
{
key: "dark",
url:
"https://gw.alipayobjects.com/zos/rmsportal/LCkqqYNmvBEbokSDscrm.svg",
title: this.$t("app.setting.pagestyle.dark"),
},
{
key: "light",
url:
"https://gw.alipayobjects.com/zos/rmsportal/jpRkZQMyYRryryPNtyIC.svg",
title: this.$t("app.setting.pagestyle.light"),
},
]}
value={navTheme}
onChange={(e) => {
this.changeSetting("navTheme", e);
}}
/>
</Body>
<Divider />
<ThemeColor
title={this.$t("app.setting.themecolor")}
value={primaryColor}
onChange={(e) => {
this.changeSetting("primaryColor", e);
}}
/>
<Divider />
<Body title={this.$t("app.setting.navigationmode")}>
<BlockChecbox
list={[
{
key: "sidemenu",
url:
"https://gw.alipayobjects.com/zos/rmsportal/JopDzEhOqwOjeNTXkoje.svg",
title: this.$t("app.setting.sidemenu"),
},
{
key: "topmenu",
url:
"https://gw.alipayobjects.com/zos/rmsportal/KDNDBbriJhLwuqMoxcAr.svg",
title: this.$t("app.setting.topmenu"),
style: { paddingLeft: "18px" },
},
]}
value={layout}
onChange={(e) => {
this.changeSetting("layout", e);
}}
/>
</Body>
<Divider />
<p>其它设置</p>
</div>
</Drawer>
);
},
};
export default SettingDrawer;