This commit is contained in:
yanran200730
2022-01-19 17:59:57 +08:00
parent e8616842d1
commit 2fdaa7aa8f
2 changed files with 5 additions and 0 deletions

View File

@@ -79,6 +79,7 @@ export default {
title: "",
content: "",
persons: [],
ticket: '',
releaseTime: null,
files: [],
},
@@ -146,6 +147,8 @@ export default {
}).then(res => {
if (res && res.data) {
this.form.releaseTime = res.data.releaseTime;
this.form.ticket = res.data.ticket
this.selectedUserCount = res.data.persons.length
Object.keys(this.form).map(e => {
this.form[e] = res.data[e];
})