bug
This commit is contained in:
@@ -79,6 +79,7 @@ export default {
|
|||||||
title: "",
|
title: "",
|
||||||
content: "",
|
content: "",
|
||||||
persons: [],
|
persons: [],
|
||||||
|
ticket: '',
|
||||||
releaseTime: null,
|
releaseTime: null,
|
||||||
files: [],
|
files: [],
|
||||||
},
|
},
|
||||||
@@ -146,6 +147,8 @@ export default {
|
|||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res && res.data) {
|
if (res && res.data) {
|
||||||
this.form.releaseTime = res.data.releaseTime;
|
this.form.releaseTime = res.data.releaseTime;
|
||||||
|
this.form.ticket = res.data.ticket
|
||||||
|
this.selectedUserCount = res.data.persons.length
|
||||||
Object.keys(this.form).map(e => {
|
Object.keys(this.form).map(e => {
|
||||||
this.form[e] = res.data[e];
|
this.form[e] = res.data[e];
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -364,6 +364,7 @@ const store = new Vuex.Store({
|
|||||||
...params
|
...params
|
||||||
}, res => {
|
}, res => {
|
||||||
console.log(111)
|
console.log(111)
|
||||||
|
alert(JSON.stringify(res))
|
||||||
console.log(res)
|
console.log(res)
|
||||||
if (res.err_msg == "selectPrivilegedContact:ok") {
|
if (res.err_msg == "selectPrivilegedContact:ok") {
|
||||||
if (typeof res.result == 'string') {
|
if (typeof res.result == 'string') {
|
||||||
@@ -377,6 +378,7 @@ const store = new Vuex.Store({
|
|||||||
})
|
})
|
||||||
}, 300)
|
}, 300)
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
|
console.log(22222)
|
||||||
reject('error')
|
reject('error')
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user