|
@@ -44,6 +44,12 @@
|
|
:item="item"
|
|
:item="item"
|
|
@change="handleChange(item)"
|
|
@change="handleChange(item)"
|
|
></radioGroupUI>
|
|
></radioGroupUI>
|
|
|
|
+ <checkboxUI
|
|
|
|
+ v-if="item.type === 'checkbox'"
|
|
|
|
+ v-model="item.value"
|
|
|
|
+ :item="item"
|
|
|
|
+ @change="handleChange(item)"
|
|
|
|
+ ></checkboxUI>
|
|
<textareaUI
|
|
<textareaUI
|
|
v-if="item.type === 'textarea'"
|
|
v-if="item.type === 'textarea'"
|
|
v-model="item.value"
|
|
v-model="item.value"
|
|
@@ -70,6 +76,7 @@ import autocompleteUI from './../FormUI/autocomplete'
|
|
import comboboxUI from './../FormUI/combobox'
|
|
import comboboxUI from './../FormUI/combobox'
|
|
import comboboxZhAndEnUI from './../FormUI/comboboxZhAndEn'
|
|
import comboboxZhAndEnUI from './../FormUI/comboboxZhAndEn'
|
|
import radioGroupUI from './../FormUI/radioGroup'
|
|
import radioGroupUI from './../FormUI/radioGroup'
|
|
|
|
+import checkboxUI from './../FormUI/checkbox'
|
|
import textareaUI from './../FormUI/textArea'
|
|
import textareaUI from './../FormUI/textArea'
|
|
import DatePicker from '@/components/DatePicker'
|
|
import DatePicker from '@/components/DatePicker'
|
|
import { ref, defineEmits } from 'vue'
|
|
import { ref, defineEmits } from 'vue'
|