This commit is contained in:
yangduo 2025-04-30 21:35:16 +08:00
parent a6672abb69
commit 1a6b599e15

View File

@ -229,7 +229,7 @@ export default {
this.postForm.expiretime = editEmail.expiretime * 1000
this.postForm.user_reg_start_time = editEmail.user_reg_start_time * 1000
this.postForm.user_reg_end_time = editEmail.user_reg_end_time * 1000
this.postForm.recipients = editEmail.recipients
this.postForm.recipients = editEmail.recipients.join('\n')
this.postForm.unikey = editEmail.unikey
} else {
this.dialogStatus = 'create'
@ -322,7 +322,7 @@ export default {
}
},
updateFrom() {
const data = JSON.parse(JSON.stringify(this.postForm))
var data = JSON.parse(JSON.stringify(this.postForm))
data.sendtime = data.sendtime / 1000
data.expiretime = data.expiretime / 1000
data.user_reg_start_time = data.user_reg_start_time / 1000