Merge branch 'develop' into release-test
Showing
1 changed file
with
5 additions
and
5 deletions
| ... | @@ -1124,7 +1124,11 @@ const panelChange = (scope, row) => { | ... | @@ -1124,7 +1124,11 @@ const panelChange = (scope, row) => { |
| 1124 | <el-form-item | 1124 | <el-form-item |
| 1125 | v-if="index == (item.inputOptions?.index ?? (item.options.length - 1)) && (item.inputOptions?.visible ?? false)" | 1125 | v-if="index == (item.inputOptions?.index ?? (item.options.length - 1)) && (item.inputOptions?.visible ?? false)" |
| 1126 | :prop="item.inputOptions?.field" :class="[item.inputOptions?.col]"> | 1126 | :prop="item.inputOptions?.field" :class="[item.inputOptions?.col]"> |
| 1127 | <el-select v-if="item.inputOptions.type == 'select'" v-model="formInline[item.inputOptions?.field]" | 1127 | <el-input v-if="item.inputOptions.type == 'input'" |
| 1128 | v-model.trim="formInline[item.inputOptions?.field]" :placeholder="item.inputOptions?.placeholder" | ||
| 1129 | :disabled="item.inputOptions?.disabled || readonly" :clearable="item.inputOptions?.clearable" | ||
| 1130 | :maxlength="item.inputOptions?.maxlength ?? ''" /> | ||
| 1131 | <el-select v-else-if="item.inputOptions.type == 'select'" v-model="formInline[item.inputOptions?.field]" | ||
| 1128 | :placeholder="item.inputOptions?.placeholder" :clearable="item.inputOptions?.clearable ?? false" | 1132 | :placeholder="item.inputOptions?.placeholder" :clearable="item.inputOptions?.clearable ?? false" |
| 1129 | :filterable="item.inputOptions?.filterable ?? false" | 1133 | :filterable="item.inputOptions?.filterable ?? false" |
| 1130 | :disabled="item.inputOptions?.disabled || readonly" | 1134 | :disabled="item.inputOptions?.disabled || readonly" |
| ... | @@ -1141,10 +1145,6 @@ const panelChange = (scope, row) => { | ... | @@ -1141,10 +1145,6 @@ const panelChange = (scope, row) => { |
| 1141 | type="date" format="YYYY-MM-DD" value-format="YYYY-MM-DD" | 1145 | type="date" format="YYYY-MM-DD" value-format="YYYY-MM-DD" |
| 1142 | :placeholder="item.inputOptions?.placeholder" | 1146 | :placeholder="item.inputOptions?.placeholder" |
| 1143 | :disabled-date="item.inputOptions?.disabledDate ?? ((time) => { return false; })" /> | 1147 | :disabled-date="item.inputOptions?.disabledDate ?? ((time) => { return false; })" /> |
| 1144 | <el-input v-else-if="item.inputOptions.type == 'input'" | ||
| 1145 | v-model.trim="formInline[item.inputOptions?.field]" :placeholder="item.inputOptions?.placeholder" | ||
| 1146 | :disabled="item.inputOptions?.disabled || readonly" :clearable="item.inputOptions?.clearable" | ||
| 1147 | :maxlength="item.inputOptions?.maxlength ?? ''" /> | ||
| 1148 | </el-form-item> | 1148 | </el-form-item> |
| 1149 | </span> | 1149 | </span> |
| 1150 | </template> | 1150 | </template> | ... | ... |
-
Please register or sign in to post a comment