|
@@ -252,9 +252,9 @@ export default {
|
|
|
that.$set(that.task_form, 'bizId', Number(localStorage.getItem('bizId')))
|
|
|
that.task_form.followVersion === 2 ? that.show_Client = false : ''
|
|
|
if (data) {
|
|
|
- that.task_form.requireId = data.requirementId
|
|
|
- that.task_form.name = data.name
|
|
|
- that.task_form.priority = data.priority
|
|
|
+ that.$set(that.task_form, 'requireId', data.requirementId)
|
|
|
+ that.$set(that.task_form, 'name', data.name)
|
|
|
+ that.$set(that.task_form, 'priority', data.priority)
|
|
|
}
|
|
|
}, 300)
|
|
|
})
|