Initial commit
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
<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">
|
||||
<div class="control-group">
|
||||
<label class="control-label">工艺流程名称</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="flow_name" autocomplete="off" placeholder="请填写工艺流程流程名称" value=""/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">工艺流程代号</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="flow_code" autocomplete="off" placeholder="请填写工艺流程代码" value=""/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">工艺流程备注</label>
|
||||
<div class="controls">
|
||||
<input type="text" name="flow_remark" autocomplete="off" placeholder="请填写工艺流程备注" value=""/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="control-group">
|
||||
<label class="control-label">从其他流程导入</label>
|
||||
<div class="controls">
|
||||
<select name="flow_id" class="span6 select2" >
|
||||
<option value="">请选择工艺流程</option>
|
||||
<foreach name="flow" 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: 200px"></div>
|
||||
|
||||
</div>
|
||||
<include file="Inc:foot"/>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user