35 lines
1.6 KiB
HTML
35 lines
1.6 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_id" value="{$_GET['flow_id']}">
|
|
<div class="control-group">
|
|
<label class="control-label">工艺流程名称</label>
|
|
<div class="controls">
|
|
<input type="text" name="flow_name" autocomplete="off" placeholder="请填写工艺流程名称" value="{$data.flow_name}"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">工艺流程代号</label>
|
|
<div class="controls">
|
|
<input type="text" name="flow_code" autocomplete="off" placeholder="请填写工艺流程代码" value="{$data.flow_code}"/>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label">工艺流程备注</label>
|
|
<div class="controls">
|
|
<input type="text" name="flow_remark" autocomplete="off" placeholder="请填写工艺流程备注" value="{$data.flow_remark}"/>
|
|
</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>
|
|
<include file="Inc:foot"/>
|