fix
Showing
2 changed files
with
3 additions
and
3 deletions
| ... | @@ -1145,7 +1145,7 @@ const panelChange = (scope, row) => { | ... | @@ -1145,7 +1145,7 @@ const panelChange = (scope, row) => { |
| 1145 | <el-form-item @click.stop.prevent | 1145 | <el-form-item @click.stop.prevent |
| 1146 | v-if="index == (item.inputOptions?.index ?? (item.options.length - 1)) && (item.inputOptions?.visible ?? false)" | 1146 | v-if="index == (item.inputOptions?.index ?? (item.options.length - 1)) && (item.inputOptions?.visible ?? false)" |
| 1147 | :prop="item.inputOptions?.field" :class="[item.inputOptions?.col]"> | 1147 | :prop="item.inputOptions?.field" :class="[item.inputOptions?.col]"> |
| 1148 | <el-select v-if="item.inputOptions?.type == 'select'" v-model="formInline[item.inputOptions?.field]" | 1148 | <el-select v-if="item.inputOptions?.type == 'select'" v-model="formInline[item.inputOptions?.field]" @click.stop.prevent |
| 1149 | :placeholder="item.inputOptions?.placeholder" :clearable="item.inputOptions?.clearable ?? false" | 1149 | :placeholder="item.inputOptions?.placeholder" :clearable="item.inputOptions?.clearable ?? false" |
| 1150 | :filterable="item.inputOptions?.filterable ?? false" | 1150 | :filterable="item.inputOptions?.filterable ?? false" |
| 1151 | :disabled="item.inputOptions?.disabled || readonly" | 1151 | :disabled="item.inputOptions?.disabled || readonly" |
| ... | @@ -1157,7 +1157,7 @@ const panelChange = (scope, row) => { | ... | @@ -1157,7 +1157,7 @@ const panelChange = (scope, row) => { |
| 1157 | :value="item.inputOptions?.props?.value ? opts[item.inputOptions.props.value] : opts.value" | 1157 | :value="item.inputOptions?.props?.value ? opts[item.inputOptions.props.value] : opts.value" |
| 1158 | :disabled="opts.disabled" /> | 1158 | :disabled="opts.disabled" /> |
| 1159 | </el-select> | 1159 | </el-select> |
| 1160 | <el-date-picker v-else-if="item.ipnutOptions?.type == 'date'" | 1160 | <el-date-picker v-else-if="item.ipnutOptions?.type == 'date'" @click.stop.prevent |
| 1161 | :disabled="item.inputOptions?.disabled || readonly" v-model="formInline[item.inputOptions?.field]" | 1161 | :disabled="item.inputOptions?.disabled || readonly" v-model="formInline[item.inputOptions?.field]" |
| 1162 | type="date" format="YYYY-MM-DD" value-format="YYYY-MM-DD" | 1162 | type="date" format="YYYY-MM-DD" value-format="YYYY-MM-DD" |
| 1163 | :placeholder="item.inputOptions?.placeholder" | 1163 | :placeholder="item.inputOptions?.placeholder" | ... | ... |
| ... | @@ -1205,7 +1205,7 @@ const productRegisterInfoItems = ref([{ | ... | @@ -1205,7 +1205,7 @@ const productRegisterInfoItems = ref([{ |
| 1205 | }, | 1205 | }, |
| 1206 | options: [], | 1206 | options: [], |
| 1207 | filterable: true, | 1207 | filterable: true, |
| 1208 | clearable: true, | 1208 | clearable: false, |
| 1209 | visible: true, | 1209 | visible: true, |
| 1210 | required: true, | 1210 | required: true, |
| 1211 | }, | 1211 | }, | ... | ... |
-
Please register or sign in to post a comment