29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<include file="Inc:head"/>
|
|
|
|
<div class="widget-box2" style="margin:0px;">
|
|
<div class="widget-content nopadding">
|
|
<form action="__ACTION__" method="post" onsubmit="return save_form2(this)" class="form-horizontal">
|
|
<input type="hidden" name="flow_craft_id" value="{$_GET['flow_craft_id']}">
|
|
<div class="control-group">
|
|
<label class="control-label">参数模板</label>
|
|
<div class="controls">
|
|
<select name="template_id" class="span6 select2" >
|
|
<option value="">请选择参数模板</option>
|
|
<foreach name="template" item="v">
|
|
<option value="{$v.value}" >{$v.name}</option>
|
|
</foreach>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-success form_submit">确定</button>
|
|
<button type="button" class="btn btn-danger" id="closeIframe">取消</button>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
<div style="height: 300px;"></div>
|
|
|
|
</div>
|
|
<include file="Inc:foot"/>
|