|
@@ -0,0 +1,52 @@
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <meta charset="UTF-8">
|
|
|
|
+ <title>亚马逊条形码打印程序</title>
|
|
|
|
+ <link rel="stylesheet" type="text/css" href="public/style/common.css">
|
|
|
|
+ <link rel="stylesheet" type="text/css" href="public/style/common_bca.css">
|
|
|
|
+ <script type="text/javascript" src="public/script/lib/jquery-3.3.1.min.js"></script>
|
|
|
|
+ <script type="text/javascript" src="public/script/lib/jquery-barcode.min.js"></script>
|
|
|
|
+ <script type="text/javascript" src="public/script/ajax.js"></script>
|
|
|
|
+ <script type="text/javascript" src="public/script/common.js"></script>
|
|
|
|
+ <script type="text/javascript" src="public/script/common_barcode.js"></script>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+ <h2 class="no_print">亚马逊条形码打印列表</h2>
|
|
|
|
+ <div class="top no_print">
|
|
|
|
+ <form id="whot" data-type="1">
|
|
|
|
+ <label for="excel">导入数据</label>
|
|
|
|
+ <span class="tips">(请使用 *.xlsx 格式文件,并确认文件内容正确)</span>
|
|
|
|
+ <input type="file" name="excel" id="excel" class="btn" />
|
|
|
|
+ <input type="button" class="btn" value="导入" onclick="uploadBarcode('barcode_uploadExcel', '1');" />
|
|
|
|
+ </form>
|
|
|
|
+ <img class="upload_icon" src="public/assets/img/loading.gif" />
|
|
|
|
+ <span class="brvbar">¦</span>
|
|
|
|
+ <form>
|
|
|
|
+ <label class="float_label">查找条码</label>
|
|
|
|
+ <input type="text" class="search_code" name="search_code" placeholder="请输入条码">
|
|
|
|
+ <input type="button" class="search_code_btn btn" value="查找" />
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="middle no_print">
|
|
|
|
+ <div class="title">
|
|
|
|
+ <span class="id">编号</span>
|
|
|
|
+ <span class="product">产品</span>
|
|
|
|
+ <span class="code">条码</span>
|
|
|
|
+ <span class="tag">标签</span>
|
|
|
|
+ <span class="tag2">标签2</span>
|
|
|
|
+ <span class="amount">数量</span>
|
|
|
|
+ <span class="create_time">日期</span>
|
|
|
|
+ <span class="print_status">打印状态</span>
|
|
|
|
+ <span class="options">操作</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div id="list" class="list"></div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="bottom pagination no_print" id="pagination" data-now="1"></div>
|
|
|
|
+ <div id="print_area" class="print_area">
|
|
|
|
+ <div id="bc_box" class="bc_box" style="margin: 50px auto 0;"></div>
|
|
|
|
+ <div id="bc_tag" class="bc_tag" style="margin: 20px auto 0; font-size: 24px;"></div>
|
|
|
|
+ <div id="bc_tag2" class="bc_tag2" style="margin: 10px auto;font-size: 24px;"></div>
|
|
|
|
+ </div>
|
|
|
|
+</body>
|
|
|
|
+</html>
|