Files
mp-10579/src/views/system/setting/components/website.vue
赵忠林 6a9be80811 refactor(setting): 更新设置组件以支持基于键值的更新
- 将 updateSetting 替换为 updateSettingByKey 方法调用
- 为所有设置组件初始化 settingKey 和 settingId 字段
- 重构 watch 监听逻辑以支持多类型数据格式处理
- 实现对 content 字段的字符串和对象格式解析
- 添加对数组和对象数据类型的兼容性支持
- 优化表单数据赋值和重置逻辑
- 统一各组件中的数据处理流程
2026-02-27 22:59:51 +08:00

213 lines
5.8 KiB
Vue

<template>
<a-card :bordered="false">
<a-form
ref="formRef"
:model="form"
:rules="rules"
: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="floatTool" extra="显示网站悬浮客服工具栏">
<a-switch v-model:checked="form.floatTool" checked-children="显示" un-checked-children="隐藏" @change="save" />
</a-form-item>
<a-form-item label="显示站内搜索" name="searchBtn">
<a-switch v-model:checked="form.searchBtn" checked-children="显示" un-checked-children="隐藏" @change="save" />
</a-form-item>
<a-form-item label="启用登录注册" name="loginBtn">
<a-switch v-model:checked="form.loginBtn" checked-children="启用" un-checked-children="不启用" @change="save" />
</a-form-item>
<a-form-item label="默认编辑器" name="editor" extra="设置默认编辑器">
<a-select v-model:value="form.editor" placeholder="请选择编辑器" class="max-w-xs" @change="save">
<a-select-option :value="1">富文本编辑器</a-select-option>
<a-select-option :value="2">Markdown编辑器</a-select-option>
</a-select>
</a-form-item>
</a-form>
</a-card>
</template>
<script lang="ts" setup>
import {reactive, ref, watch} from 'vue';
import {message} from 'ant-design-vue';
import {Setting} from '@/api/system/setting/model';
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 {ItemType} from "ele-admin-pro/es/ele-image-upload/types";
import {uploadFile} from "@/api/system/file";
const props = defineProps<{
value?: string;
// 修改回显的数据
data?: Setting | null;
}>();
// 保存字段信息(设定好key和描述,content里的字段是随意加的会自动转为json保存到数据库)
const settingKey = ref('website');
// 是否开启响应式布局
const themeStore = useThemeStore();
const {styleResponsive} = storeToRefs(themeStore);
// 提交状态
const loading = ref(false);
// 是否是修改
const isUpdate = ref(false);
//
const formRef = ref<FormInstance | null>(null);
// 表单数据
const {form, resetFields, assignFields} = useFormData<Setting>({
settingId: undefined,
settingKey: 'website',
type: 1,
roleId: undefined,
openWxAuth: 1,
openWxBindPhone: 1,
openWxofficialAuth: 1,
openWxofficialBindPhone: 1,
tokenExpireTime: 86400,
comments: '',
tenantId: localStorage.getItem('TenantId')
});
// 表单验证规则
const rules = reactive({
type: [
{
required: true,
message: '请选择默认注册方式',
type: 'number',
trigger: 'blur'
}
],
roleId: [
{
required: true,
message: '请选择默认角色',
type: 'number',
trigger: 'blur'
}
],
openWxAuth: [
{
required: true,
message: '请输入系统名称',
type: 'number',
trigger: 'blur'
}
],
openWxBindPhone: [
{
required: true,
message: '请输入系统名称',
type: 'number',
trigger: 'blur'
}
],
openWxofficialAuth: [
{
required: true,
message: '请输入系统名称',
type: 'number',
trigger: 'blur'
}
],
openWxofficialBindPhone: [
{
required: true,
message: '请输入系统名称',
type: 'number',
trigger: 'blur'
}
]
});
const onUpload = (d: ItemType) => {
uploadFile(<File>d.file)
.then((result) => {
form.logo = result.path;
message.success('上传成功');
})
.catch((e) => {
message.error(e.message);
});
};
const onClose = () => {
form.logo = undefined
}
/* 保存编辑 */
const save = () => {
if (!formRef.value) {
return;
}
formRef.value
.validate()
.then(() => {
loading.value = true;
form.settingKey = settingKey.value;
const appForm = {
...form,
content: JSON.stringify(form)
};
const saveOrUpdate = isUpdate.value ? updateSettingByKey : addSetting;
saveOrUpdate(appForm)
.then((msg) => {
message.success('保存成功');
})
.catch((e) => {
message.error(e.message);
});
})
.catch(() => {
});
};
watch(
() => props.data,
(data) => {
const activeMatch = props.value === settingKey.value;
if (!data || typeof data !== 'object') {
if (!activeMatch) return;
isUpdate.value = false;
resetFields();
form.settingId = undefined;
form.settingKey = settingKey.value;
return;
}
const normalized: any = Array.isArray(data)
? data.find((d) => d?.settingKey === settingKey.value) ?? 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.value) return;
isUpdate.value = true;
assignFields(contentOrRow);
form.settingId = (normalized as any).settingId;
form.settingKey = settingKey.value;
},
{ immediate: true }
);
</script>