- 将 updateSetting 替换为 updateSettingByKey 方法调用 - 为所有设置组件初始化 settingKey 和 settingId 字段 - 重构 watch 监听逻辑以支持多类型数据格式处理 - 实现对 content 字段的字符串和对象格式解析 - 添加对数组和对象数据类型的兼容性支持 - 优化表单数据赋值和重置逻辑 - 统一各组件中的数据处理流程
161 lines
4.6 KiB
Vue
161 lines
4.6 KiB
Vue
<template>
|
|
<a-card :bordered="false">
|
|
<a-form
|
|
ref="formRef"
|
|
:model="form"
|
|
:label-col="styleResponsive ? { md: 3, sm: 5, xs: 24 } : { flex: '90px' }"
|
|
:wrapper-col="styleResponsive ? { md: 9, sm: 19, xs: 24 } : { flex: '1' }"
|
|
>
|
|
<a-form-item
|
|
label="允许被搜索"
|
|
name="name"
|
|
extra="关闭后,用户无法通过名称搜索到此网站"
|
|
>
|
|
<a-switch
|
|
v-model:checked="form.searched"
|
|
checked-children="允许"
|
|
un-checked-children="不允许"
|
|
@change="save"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item
|
|
label="文章发布审核"
|
|
name="articleReview"
|
|
extra="开启需要审核后发布,关闭则直接发布"
|
|
>
|
|
<a-switch
|
|
v-model:checked="form.articleReview"
|
|
checked-children="需要"
|
|
un-checked-children="不需要"
|
|
@change="save"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="开发者模式" name="plugin" extra="开启开发者模式">
|
|
<a-switch
|
|
v-model:checked="form.plugin"
|
|
checked-children="启用"
|
|
un-checked-children="禁用"
|
|
@change="save"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="隐藏底部版权信息" name="showAdminCopyright">
|
|
<a-switch
|
|
v-model:checked="form.showAdminCopyright"
|
|
checked-children="显示"
|
|
un-checked-children="隐藏"
|
|
@change="save"
|
|
/>
|
|
</a-form-item>
|
|
</a-form>
|
|
</a-card>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, watch } from 'vue';
|
|
import { message } from 'ant-design-vue';
|
|
import { useThemeStore } from '@/store/modules/theme';
|
|
import { storeToRefs } from 'pinia';
|
|
import { FormInstance } from 'ant-design-vue/es/form';
|
|
import useFormData from '@/utils/use-form-data';
|
|
import { addSetting, updateSettingByKey } from '@/api/system/setting';
|
|
import { useWebsiteSettingStore } from '@/store/modules/setting';
|
|
|
|
const props = defineProps<{
|
|
value?: string;
|
|
// 修改回显的数据
|
|
data?: any | null;
|
|
}>();
|
|
|
|
// 是否开启响应式布局
|
|
const themeStore = useThemeStore();
|
|
const settingStore = useWebsiteSettingStore();
|
|
const { styleResponsive } = storeToRefs(themeStore);
|
|
// 提交状态
|
|
const loading = ref(false);
|
|
// 是否是修改
|
|
const isUpdate = ref(false);
|
|
//
|
|
const formRef = ref<FormInstance | null>(null);
|
|
// 表单数据
|
|
const { form, resetFields, assignFields } = useFormData<any>({
|
|
settingId: undefined,
|
|
settingKey: 'privacy',
|
|
searched: undefined,
|
|
showAdminCopyright: ''
|
|
});
|
|
|
|
/* 保存编辑 */
|
|
const save = () => {
|
|
if (!formRef.value) {
|
|
return;
|
|
}
|
|
formRef.value
|
|
.validate()
|
|
.then(() => {
|
|
loading.value = true;
|
|
// 更新状态
|
|
settingStore.setSetting(form);
|
|
const appForm = {
|
|
...form,
|
|
content: JSON.stringify(form)
|
|
};
|
|
const saveOrUpdate = isUpdate.value ? updateSettingByKey : addSetting;
|
|
saveOrUpdate(appForm)
|
|
.then(() => {
|
|
message.success('保存成功');
|
|
})
|
|
.catch((e) => {
|
|
message.error(e.message);
|
|
});
|
|
})
|
|
.catch(() => {});
|
|
};
|
|
|
|
watch(
|
|
() => props.data,
|
|
(data) => {
|
|
const settingKey = 'privacy';
|
|
const activeMatch = props.value === settingKey;
|
|
if (!data || typeof data !== 'object') {
|
|
if (!activeMatch) return;
|
|
isUpdate.value = false;
|
|
resetFields();
|
|
form.settingId = undefined;
|
|
form.settingKey = settingKey;
|
|
return;
|
|
}
|
|
|
|
const normalized: any = Array.isArray(data)
|
|
? data.find((d) => d?.settingKey === settingKey) ?? data[0]
|
|
: (data as any).data && typeof (data as any).data === 'object'
|
|
? (data as any).data
|
|
: data;
|
|
|
|
let parsedContent: any | undefined;
|
|
const rawContent = (normalized as any).content;
|
|
if (rawContent) {
|
|
if (typeof rawContent === 'string') {
|
|
try {
|
|
parsedContent = JSON.parse(rawContent);
|
|
} catch {
|
|
parsedContent = undefined;
|
|
}
|
|
} else if (typeof rawContent === 'object') {
|
|
parsedContent = rawContent;
|
|
}
|
|
}
|
|
|
|
const contentOrRow = parsedContent ?? normalized;
|
|
const incomingKey =
|
|
(contentOrRow as any).settingKey ?? (normalized as any).settingKey;
|
|
if (!activeMatch && incomingKey !== settingKey) return;
|
|
|
|
isUpdate.value = true;
|
|
assignFields(contentOrRow);
|
|
form.settingId = (normalized as any).settingId;
|
|
form.settingKey = settingKey;
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|