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];
})

View File

@@ -364,6 +364,7 @@ const store = new Vuex.Store({
...params
}, res => {
console.log(111)
alert(JSON.stringify(res))
console.log(res)
if (res.err_msg == "selectPrivilegedContact:ok") {
if (typeof res.result == 'string') {
@@ -377,6 +378,7 @@ const store = new Vuex.Store({
})
}, 300)
}).catch(e => {
console.log(22222)
reject('error')
})
})