1234567891011121314151617181920212223242526 |
- <view>
- <container title="初始化参数">
- <textarea
- placeholder="请输入内容"
- data-obj="initParams"
- value="{{initParams}}"
- auto-height
- style="width:100%"
- onInput="handleChange"
- maxlength=-1
- >
- </textarea>
- </container>
- <ant-button
- style="margin-top:20px"
- type="primary"
- onTap="saveCongfig">
- 保存配置
- </ant-button>
- <ant-button
- style="margin-top:10px"
- type="default"
- onTap="resetConfig">
- 恢复默认值
- </ant-button>
- </view>
|