fix: 修改编辑配置对接信息
Build and Deploy Vue3 / build (push) Successful in 1m38s
Build and Deploy Vue3 / deploy (push) Successful in 56s

This commit is contained in:
2026-03-10 14:30:07 +08:00
parent 2e82ff8a34
commit 255bd9e832
+2 -1
View File
@@ -1023,6 +1023,7 @@ const submitSettingForm = async () => {
await settingFormRef.value.validate()
const submitData = {
id: settingForm.id,
name: settingForm.name,
value: settingForm.value,
type: settingForm.type,
@@ -1032,7 +1033,7 @@ const submitSettingForm = async () => {
}
const res = settingForm.id
? await updateSetting(settingForm.id, submitData)
? await updateSetting(submitData)
: await createSetting(submitData)
if (res.data.code === 200) {