b4b6acda by lxs

数据定价更新

1 parent 221a15c7
......@@ -1189,6 +1189,11 @@ const panelChange = (scope, row) => {
:label="child.props?.label ? opts[child.props.label] : opts.label"
:value="child.props?.value ? opts[child.props.value] : opts.value" :disabled="opts.disabled" />
</el-select>
<el-checkbox v-else-if="child.type == 'checkbox'" v-model="formInline[child.field]"
:disabled="child.disabled || readonly" :true-label="child.trueValue ?? true"
:false-label="child.falseValue ?? false">
{{ child.placeholder }}
</el-checkbox>
<el-input v-else v-model.trim="formInline[child.field]" :placeholder="child.placeholder"
:clearable="child.clearable" :maxlength="child.maxlength ?? ''"
@change="(val) => inputChange(val, child)" @input="(val) => inputEventChange(val, child)" />
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!