index.html 1.1 KB

12345678910111213141516171819202122
  1. <div class="layout vertical fit">
  2. <ui-prop name="UI节点树脚本输出路径:" tooltip="">
  3. <div class="flex-1 layout horizontal center">
  4. <ui-input placeholder="" disabled class="flex-1" v-value="nodeOutputPath">
  5. </ui-input>
  6. <ui-button class="blue" v-on:confirm="onBtnSelectNodePath">选择目录</ui-button>
  7. <ui-button v-show="this.nodeOutputPath!==null && this.nodeOutputPath.length>0"
  8. v-on:confirm="onBtnOpenNodePath">打开目录
  9. </ui-button>
  10. </div>
  11. </ui-prop>
  12. <ui-prop name="UI逻辑脚本输出路径:" tooltip="">
  13. <div class="flex-1 layout horizontal center">
  14. <ui-input placeholder="" disabled class="flex-1" v-value="uiOutputPath">
  15. </ui-input>
  16. <ui-button class="blue" v-on:confirm="onBtnSelectUIPath">选择目录</ui-button>
  17. <ui-button v-show="this.uiOutputPath!==null && this.uiOutputPath.length>0" v-on:confirm="onBtnOpenUIPath">
  18. 打开目录
  19. </ui-button>
  20. </div>
  21. </ui-prop>
  22. </div>