数据定价更新
Showing
1 changed file
with
5 additions
and
0 deletions
| ... | @@ -1189,6 +1189,11 @@ const panelChange = (scope, row) => { | ... | @@ -1189,6 +1189,11 @@ const panelChange = (scope, row) => { |
| 1189 | :label="child.props?.label ? opts[child.props.label] : opts.label" | 1189 | :label="child.props?.label ? opts[child.props.label] : opts.label" |
| 1190 | :value="child.props?.value ? opts[child.props.value] : opts.value" :disabled="opts.disabled" /> | 1190 | :value="child.props?.value ? opts[child.props.value] : opts.value" :disabled="opts.disabled" /> |
| 1191 | </el-select> | 1191 | </el-select> |
| 1192 | <el-checkbox v-else-if="child.type == 'checkbox'" v-model="formInline[child.field]" | ||
| 1193 | :disabled="child.disabled || readonly" :true-label="child.trueValue ?? true" | ||
| 1194 | :false-label="child.falseValue ?? false"> | ||
| 1195 | {{ child.placeholder }} | ||
| 1196 | </el-checkbox> | ||
| 1192 | <el-input v-else v-model.trim="formInline[child.field]" :placeholder="child.placeholder" | 1197 | <el-input v-else v-model.trim="formInline[child.field]" :placeholder="child.placeholder" |
| 1193 | :clearable="child.clearable" :maxlength="child.maxlength ?? ''" | 1198 | :clearable="child.clearable" :maxlength="child.maxlength ?? ''" |
| 1194 | @change="(val) => inputChange(val, child)" @input="(val) => inputEventChange(val, child)" /> | 1199 | @change="(val) => inputChange(val, child)" @input="(val) => inputEventChange(val, child)" /> | ... | ... |
-
Please register or sign in to post a comment