|
@@ -29,7 +29,7 @@
|
|
|
<#--<button type="button" class="my-btn-search" onclick="setting();" style="cursor:pointer; margin-right: 50px;">设置</button>-->
|
|
|
<#-- <button type="button" class="my-btn-search" onclick="batch_add_machine('批量添加机器','${path}/admin/machine/_to_add_batch','','550');" style="cursor:pointer; margin-right: 50px;">添加机器</button>
|
|
|
-->
|
|
|
- <button type="button" class="my-btn-search" onclick="add_renovationmachine('批量添加机器','${path}/admin/machine/_to_add_renovation','570','450');" style="cursor:pointer; margin-right: 50px;">添加翻新机</button>
|
|
|
+ <button type="button" class="my-btn-search" onclick="add_renovationmachine('批量添加机器','${path}/admin/machine/_to_add_renovation','570','450');" style="cursor:pointer; margin-right: 50px;">添加机器</button>
|
|
|
|
|
|
<input class="my-input" type="text" name="machineBarcode" value="${machineBarcode!''}" placeholder="请输入机器编号"/>
|
|
|
<select class="my-select" name="machineIsPrint">
|
|
@@ -76,6 +76,7 @@
|
|
|
<table class="table table-border table-bordered table-bg table-hover table-sort">
|
|
|
<thead>
|
|
|
<tr class="text-c">
|
|
|
+ <th width="100">产品名/型号</th>
|
|
|
<th width="100">机器条码</th>
|
|
|
<th width="100">机器二维码</th>
|
|
|
<th width="100">打印状态</th>
|
|
@@ -86,7 +87,6 @@
|
|
|
<th width="40">硬件版本</th>
|
|
|
<th width="40">软件版本</th>
|
|
|
<th width="40">是否是翻新机</th>
|
|
|
- <th width="70">产品名/型号</th>
|
|
|
<th width="150">操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -94,6 +94,9 @@
|
|
|
<#if page.dataList?? && (page.dataList?size > 0) >
|
|
|
<#list page.dataList as list>
|
|
|
<tr>
|
|
|
+ <td class="text-c" width="140">
|
|
|
+ ${list.produceName }/${list.producePattern }-${list.produceModel }
|
|
|
+ </td>
|
|
|
<td class="text-c" width="100">${list.machineBarcode }</td>
|
|
|
<td class="text-c" width="100"><div id="${100000 + list_index}" onclick="print('${list.machineBarcode }','${list.machineQrcode }','${list.machineId }','${list.machineProduceType }')"><img style="width: 50px;height: 50px;" src="${list.machineQrcode }"></td>
|
|
|
<td class="text-c" width="100">
|
|
@@ -132,9 +135,6 @@
|
|
|
否
|
|
|
</#if>
|
|
|
</td>
|
|
|
- <td class="text-c" width="100">
|
|
|
- ${list.produceName }/${list.producePattern }-${list.produceModel }
|
|
|
- </td>
|
|
|
<!-- 遍历操作 -->
|
|
|
<td class="td-manage text-c">
|
|
|
<a onclick="machineLogs(${list.machineId});" title="生产流程" href="javascript:;" class="ml-5" style="text-decoration:none"><i class="Hui-iconfont"></i></a>
|