mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-07 11:34:05 +08:00
23 lines
895 B
HTML
23 lines
895 B
HTML
<div class="ui-project-setting">
|
|
<form @submit.prevent="edit">
|
|
<div class="ui-control-bar fn-clear">
|
|
<div class="fn-right">
|
|
<input type="submit" class="ui-button" value="确认"/>
|
|
<input type="button" class="ui-button ui-button-orange" value="取消"/>
|
|
</div>
|
|
</div>
|
|
<div class="ui-project-configure">
|
|
<ul>
|
|
<li is="project-base" :name.sync="project.name" :path.sync="project.path"></li>
|
|
<li class="ui-sub-item">
|
|
<label>环境变量:</label>
|
|
<dynamic-item name-label="变量名" value-label="变量值" :items.sync="project.env"></dynamic-item>
|
|
</li>
|
|
<li id="add-cmd" class="ui-sub-item">
|
|
<label>项目命令:</label>
|
|
<dynamic-item name-label="名称" value-label="命令" :items.sync="project.command"></dynamic-item>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</form>
|
|
</div> |