Preemptively upload task order PDF

This commit is contained in:
richard-dds
2018-10-19 10:57:18 -04:00
parent 3cf0907d0d
commit 5d2b976e5f
8 changed files with 217 additions and 32 deletions

View File

@@ -25,7 +25,22 @@ export default {
} = this.initialData
return {
funding_type
funding_type,
shouldForceShowTaskOrder: false
}
},
computed: {
showTaskOrder: function() {
return !this.initialData.task_order || this.shouldForceShowTaskOrder
}
},
methods: {
forceShowTaskOrder: function(e) {
console.log("forceShowTaskOrder", e)
e.preventDefault()
this.shouldForceShowTaskOrder = true
}
}
}