Update new CLIN fields so they post data properly

This commit is contained in:
leigh-mil
2019-06-07 10:37:27 -04:00
parent e017cd12af
commit 61d7bc92d8
3 changed files with 114 additions and 53 deletions

View File

@@ -1,11 +1,11 @@
import DateSelector from './date_selector'
import optionsinput from './options_input'
import textinput from './text_input'
export default {
name: 'clin-fields',
components: {
DateSelector,
textinput,
},

View File

@@ -19,6 +19,7 @@ export default {
initialyear: { type: String },
mindate: { type: String },
maxdate: { type: String },
nameTag: { type: String }
},
data: function() {
@@ -26,6 +27,7 @@ export default {
day: this.initialday,
month: this.initialmonth,
year: this.initialyear,
name: this.nameTag,
}
},