setInit.axml 529 B

1234567891011121314151617181920212223242526
  1. <view>
  2. <container title="初始化参数">
  3. <textarea
  4. placeholder="请输入内容"
  5. data-obj="initParams"
  6. value="{{initParams}}"
  7. auto-height
  8. style="width:100%"
  9. onInput="handleChange"
  10. maxlength=-1
  11. >
  12. </textarea>
  13. </container>
  14. <ant-button
  15. style="margin-top:20px"
  16. type="primary"
  17. onTap="saveCongfig">
  18. 保存配置
  19. </ant-button>
  20. <ant-button
  21. style="margin-top:10px"
  22. type="default"
  23. onTap="resetConfig">
  24. 恢复默认值
  25. </ant-button>
  26. </view>