78 lines
3.6 KiB
HTML
78 lines
3.6 KiB
HTML
<include file="Inc:header"/>
|
|
<div class="container-fluid">
|
|
<div class="main_head">
|
|
<div class="main_tab" style="width:40%; margin-top:10px;">
|
|
<h1>{$pagetitle}</h1>
|
|
</div>
|
|
<div class="main_add" style="width:60%;display: flex;justify-content: flex-end">
|
|
<form action="__ACTION__" method="get">
|
|
<label>工序名称:<input name="craft_name" value="{:I('get.craft_name')}" class="span2"></label>
|
|
<button class="btn btn-inverse">搜索</button>
|
|
</form>
|
|
<a class="btn btn-inverse iframe" href="{:U('add')}" style="margin-left:10px;">+增加工序</a>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div style="text-align:right; float:right"></div>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<div class="widget-box">
|
|
<div class="widget-content nopadding">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th >工序名称</th>
|
|
<th >工序代号</th>
|
|
<th >工序备注</th>
|
|
<th >工种</th>
|
|
<th >添加人</th>
|
|
<th >添加时间</th>
|
|
<th >修改人</th>
|
|
<th >修改时间</th>
|
|
<th> 操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<foreach name="data" item="v">
|
|
<tr>
|
|
<td style="text-align: center;">{$v['craft_name']}</td>
|
|
<td style="text-align: center;">{$v['craft_code']}</td>
|
|
<td style="text-align: center;">{$v['craft_remark']}</td>
|
|
<td style="text-align: center;">{$v['craft_type']['type_name']}</td>
|
|
<td style="text-align: center;">{$v['who_add']['user_name']}</td>
|
|
<td style="text-align: center;">{:date('Y-m-d H:i:s',$v['craft_time_add'])}</td>
|
|
<td style="text-align: center;">{$v['who_modify']['user_name']}</td>
|
|
<td style="text-align: center;">{$v['craft_time_modify'] ? date('Y-m-d
|
|
H:i:s',$v['craft_time_modify']) : ''}
|
|
</td>
|
|
<if condition="$v['used']">
|
|
<td class="center">
|
|
不可删除和修改
|
|
</td>
|
|
<else/>
|
|
<td class="center">
|
|
<a href="{:U('editor',array('craft_id'=>$v[craft_id]))}"
|
|
class="btn btn-primary btn-mini iframe" height="400px">修改</a>
|
|
<a href="{:U('delete',array('craft_id'=>$v[craft_id]))}"
|
|
class="btn btn-danger btn-mini ajax_del">删除</a>
|
|
</td>
|
|
</if>
|
|
</tr>
|
|
</foreach>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pagination alternate">
|
|
<ul>{$listpage}</ul>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<include file="Inc/footer"/> |