You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
2.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<el-card shadow="never">
<el-tabs v-model="activeName" type="card" @tab-click="handleClick">
<el-tab-pane
v-for="item in categories"
:key="'category-' + item.value"
:label="item.label"
:name="item.value"
>
</el-tab-pane>
</el-tabs>
<FormConfig :init-configs="configs" />
<el-alert
v-if="activeName == 'converter'"
title="同时启用GZIP和SVGO相对直接的SVG文件总体可以节省85%左右的存储空间。启用SVGO需要全局安装node.js的SVGO模块"
type="info"
:closable="false"
show-icon
>
</el-alert>
</el-card>
</template>
<script>
import { mapGetters } from 'vuex'
import { listConfig } from '~/api/config'
import FormConfig from '~/components/FormConfig.vue'
export default {
components: { FormConfig },
layout: 'admin',
data() {
return {
activeName: 'system',
configs: [],
categories: [
{
label: '系统配置',
value: 'system',
},
{
label: '底链配置',
value: 'footer',
},
{
label: '验证码配置',
value: 'captcha',
},
{
label: '安全配置',
value: 'security',
},
{
label: '转换配置',
value: 'converter',
},
{
label: '下载配置',
value: 'download',
},
{
label: '积分配置',
value: 'score',
},
{
label: '邮箱配置',
value: 'email',
},
],
}
},
head() {
return {
title: `系统设置 - ${this.settings.system.sitename}`,
}
},
computed: {
...mapGetters('setting', ['settings']),
},
watch: {
'$route.query': {
handler() {
this.activeName = this.$route.query.tab || 'system'
this.loadConfig()
},
immediate: true,
},
},
methods: {
handleClick(tab) {
this.activeName = tab.name
this.$router.push({
query: {
tab: tab.name,
},
})
},
async loadConfig() {
const res = await listConfig({ category: [this.activeName] })
if (res.status === 200) {
this.configs = res.data.config || []
} else {
this.configs = []
this.$message.error(res.data.message)
}
},
},
}
</script>