File tree Expand file tree Collapse file tree
continew-plugin/continew-plugin-generator/src/main/resources/templates/frontend Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 <#if fieldConfig.formType == "SELECT" ><#-- 下拉框 -->
2020 <a-select
2121 v-model =" queryForm.${fieldConfig.fieldName}"
22- :options =" ${fieldConfig.dictCode}"
22+ :options =" ${fieldConfig.dictCode!'' }"
2323 placeholder =" 请选择${fieldConfig.comment}"
2424 allow-clear
2525 style =" width : 150px "
2626 @change =" search"
2727 />
2828 <#elseif fieldConfig.formType == "RADIO" ><#-- 单选框 -->
29- <a-radio-group v-model =" queryForm.${fieldConfig.fieldName}" :options =" ${fieldConfig.dictCode!'dictKey 或者自定义数组'}" @change =" search" />
29+ <a-radio-group
30+ v-model =" queryForm.${fieldConfig.fieldName}"
31+ :options =" ${fieldConfig.dictCode!'dictKey 或者自定义数组'}"
32+ @change =" search"
33+ />
3034 <#elseif fieldConfig.formType == "DATE" ><#-- 日期框 -->
3135 <#if fieldConfig.queryType == "BETWEEN" >
3236 <DateRangePicker v-model =" queryForm.${fieldConfig.fieldName}" format =" YYYY-MM-DD" @change =" search" />
You can’t perform that action at this time.
0 commit comments