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

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

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