Toggle option for organization providing assistance
This commit is contained in:
parent
f53e656475
commit
6e763773b5
@ -19,12 +19,14 @@ export default {
|
||||
data: function () {
|
||||
const {
|
||||
estimated_monthly_spend = 0,
|
||||
jedi_migration = ''
|
||||
jedi_migration = '',
|
||||
technical_support_team = ''
|
||||
} = this.initialData
|
||||
|
||||
return {
|
||||
estimated_monthly_spend,
|
||||
jedi_migration
|
||||
jedi_migration,
|
||||
technical_support_team
|
||||
}
|
||||
},
|
||||
|
||||
@ -42,6 +44,9 @@ export default {
|
||||
},
|
||||
isJediMigration: function () {
|
||||
return this.jedi_migration === 'yes'
|
||||
},
|
||||
hasTechnicalSupportTeam: function () {
|
||||
return this.technical_support_team === 'yes'
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -34,7 +34,9 @@
|
||||
<template v-if='isJediMigration' v-cloak>
|
||||
{{ OptionsInput(f.rationalization_software_systems) }}
|
||||
{{ OptionsInput(f.technical_support_team) }}
|
||||
<template v-if="hasTechnicalSupportTeam">
|
||||
{{ OptionsInput(f.organization_providing_assistance) }}
|
||||
</template>
|
||||
{{ OptionsInput(f.engineering_assessment) }}
|
||||
{{ OptionsInput(f.data_transfers) }}
|
||||
{{ OptionsInput(f.expected_completion_date) }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user