|
@@ -0,0 +1,83 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html>
|
|
|
+ <head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <title></title>
|
|
|
+ <style>
|
|
|
+ *{padding: 0;margin: 0;}
|
|
|
+ .my-input{border: 1px solid rgba(0,0,0,.1);padding: 1px 5px;height: 32px;margin-right: 10px;}
|
|
|
+ .my-input::-webkit-input-placeholder,.my-select{color: #dcdcdc;}
|
|
|
+ .my-select{border: 1px solid rgba(0,0,0,.1);padding:6px 50px 6px 15px;height: 34px;margin: 0 10px; -webkit-appearance:none;appearance:none;background: url(images/select-1.png) right center no-repeat;background-size:auto 100%;}
|
|
|
+ .my-btn-search{border: 1px solid #32a3d8;padding: 1px 25px;height: 32px;background-color: #32a3d8;color: #fff;}
|
|
|
+ </style>
|
|
|
+ <#include "/base/list_base.ftl">
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <div>
|
|
|
+ <input class="my-input" type="text" placeholder="请输入机器编号"/>
|
|
|
+ <select class="my-select">
|
|
|
+ <option value ="未打印">未打印</option>
|
|
|
+ </select>
|
|
|
+ <select class="my-select">
|
|
|
+ <option value ="正常">正常</option>
|
|
|
+ </select>
|
|
|
+ <button type="submit" class="my-btn-search">搜索</button>
|
|
|
+ </div>
|
|
|
+ <div class="mt-20">
|
|
|
+ <table class="table table-border table-bordered table-bg table-hover table-sort">
|
|
|
+ <thead>
|
|
|
+ <tr class="text-c">
|
|
|
+ <th width="10">机器条码(点击打印)</th>
|
|
|
+ <th width="100">机器二维码(点击打印)</th>
|
|
|
+ <th width="100">打印状态</th>
|
|
|
+ <th width="100">销售状态</th>
|
|
|
+ <th width="100">销售日期</th>
|
|
|
+ <th width="100">生产流程状态</th>
|
|
|
+ <th width="50">生产时间</th>
|
|
|
+ <th width="150">操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="listid">
|
|
|
+ <#list page.dataList as order>
|
|
|
+ <tr>
|
|
|
+ <td class="text-c" width="10">${list.machineBarcode }</td>
|
|
|
+ <td class="text-c" width="100"><div id="${100000 + st.index}"><img style="width: 50px;height: 50px;" src="${list.machineQrcode }"></td>
|
|
|
+ <td class="text-c" width="100">
|
|
|
+ <#if list.machineIsPrint == 1>
|
|
|
+ 未打印
|
|
|
+ </#if>
|
|
|
+ <#if list.machineIsPrint == 2>
|
|
|
+ 已打印
|
|
|
+ </#if>
|
|
|
+ </td>
|
|
|
+ <td class="text-c" width="100">
|
|
|
+ <#if list.machineSalesState == 1>
|
|
|
+ 已售出
|
|
|
+ </#if>
|
|
|
+ <#if list.machineSalesState == 2>
|
|
|
+ 未售出
|
|
|
+ </#if>
|
|
|
+ </td>
|
|
|
+ <td class="text-c" width="100"><fmt:formatDate value="${list.machineSalesDate }" pattern="yyyy-MM-dd HH:mm" /></td>
|
|
|
+ <td class="text-c" width="100">
|
|
|
+ <#if list.machineProcessState == 1>
|
|
|
+ 正常
|
|
|
+ </#if>
|
|
|
+ <#if list.machineProcessState == 2>
|
|
|
+ 异常
|
|
|
+ </#if>
|
|
|
+ </td>
|
|
|
+ <td class="text-c" width="100"><fmt:formatDate value="${list.machineProducedTime }" pattern="yyyy-MM-dd HH:mm" /></td>
|
|
|
+ <!-- 遍历操作 -->
|
|
|
+ <td class="td-manage text-c">
|
|
|
+ <#--<a onclick="print(${100000 + st.index},${list.numberId},${list.numberIsPrint})" title="打印" href="javascript:;" class="ml-5" style="text-decoration:none"><i class="Hui-iconfont"></i></a>
|
|
|
+ <a onclick="downLoad();" title="下载" href="javascript:;" class="ml-5" style="text-decoration:none"><i class="Hui-iconfont"></i></a>-->
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </#list>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <#include "/base/page_util.ftl">
|
|
|
+ </body>
|
|
|
+</html>
|