b4b6acda by lxs

数据定价更新

1 parent 221a15c7
...@@ -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)" />
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!