提交 32b83f86 编写于 作者: Mosher's avatar Mosher

update:更新步进器获取编辑器参数逻辑

上级 9c05c7eb
......@@ -24,17 +24,21 @@
{{#if item.psEditor.readOnly}}
:readonly="{{item.psEditor.readOnly}}"
{{/if}}
{{#if item.psEditor.editorParams.precision}}
:precision="{{item.psEditor.editorParams.precision}}"
{{/if}}
{{#if item.psEditor.editorParams.stepValue}}
:step="{{item.psEditor.editorParams.stepValue}}"
{{/if}}
{{#if item.psEditor.editorParams.minValue}}
:min="{{item.psEditor.editorParams.minValue}}"
{{/if}}
{{#if item.psEditor.editorParams.maxValue}}
:max="{{item.psEditor.editorParams.maxValue}}"
{{#if item.psEditor.editorParams}}
{{#jsonParse item.psEditor.editorParams}}
{{#if precision}}
:precision="{{precision}}"
{{/if}}
{{#if step}}
:step="{{step}}"
{{/if}}
{{#if max}}
:max="{{max}}"
{{/if}}
{{#if min}}
:min="{{min}}"
{{/if}}
{{/jsonParse}}
{{/if}}
{{#if (or (eq ctrlType 'form') (eq ctrlType 'panel'))}}
:value="state.data.{{item.psEditor.name}}"
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册