Compare commits

...

2 Commits

Author SHA1 Message Date
fit2bot
1b8333ce58 feat: Update v3.7.2 2023-10-10 17:33:24 +08:00
feng
d7cb5ab51c fix: 系统设置 邮件设置 不能设置后缀 2023-09-27 13:17:20 +05:00
3 changed files with 1628 additions and 1631 deletions

1
GITSHA Normal file
View File

@@ -0,0 +1 @@
d7cb5ab51ce458a4ca0c14dfd7727dc773652fb6

View File

@@ -99,18 +99,14 @@ export default {
}
],
cleanFormValue(data) {
const submitValue = {}
submitValue['EMAIL_RECIPIENT'] = data['EMAIL_RECIPIENT']
submitValue['EMAIL_FROM'] = data['EMAIL_FROM']
submitValue['EMAIL_SUBJECT_PREFIX'] = data['EMAIL_SUBJECT_PREFIX']
Object.keys(submitValue).forEach(
Object.keys(data).forEach(
function(key) {
if (submitValue[key] === null) {
delete submitValue[key]
if (data[key] === null) {
delete data[key]
}
}
)
return submitValue
return data
},
submitMethod() {
return 'patch'

3246
yarn.lock

File diff suppressed because it is too large Load Diff