You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

139 lines
5.2 KiB

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/favicon.ico">
<title>${projectTitle!"MESPda"}</title>
<!-- Bootstrap core CSS -->
<link href="/pda/bootstrap/3.3.7/bootstrap.min.css" rel="stylesheet">
<link href="/pda/bootstrap/3.3.7/bootstrap-theme.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css"
href="/pda/jeasyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="/pda/jeasyui/themes/icon.css">
<!-- Custom styles for this template -->
<link href="/pda/css/base.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/button.css">
<style type="text/css">
/* reset ivu-btn*/
.ivu-btn{
padding: 4px 4px;
}
.scan-code{
height: 28px;
margin-top: 5px;
font-size: 12px;
}
</style>
</head>
<body>
<div id="app">
<input type="hidden" id="flag" value="${Session.qa_flag!'N'}">
<input type="hidden" id="qa_cache" value="${Session.qa_cache!'N'}">
<div class="mint-tab-container screenHeight">
<header class="mint-header is-fixed">
<div class="mint-header-button is-left">
<div class="header-title">
<a onclick="goBack()" class="go-back"><i class="mintui mintui-back"></i></a>
<span>融欣MES - QA检验</span>
</div>
</div>
<h1 class="mint-header-title"></h1>
<div class="mint-header-button is-right"></div>
</header>
<form autocomplete="off" class="ivu-form ivu-form-label-right">
<div class="ivu-form-item">
<label class="ivu-form-item-label" style="width: 90px;">请扫描卷号</label>
<div class="ivu-form-item-content" style="margin-left: 90px;">
<div class="ivu-input-wrapper ivu-input-type">
<textarea autocomplete="off" spellcheck="false" id="rollNo"
placeholder="请扫描卷号..." rows="2" autofocus="autofocus"
class="ivu-input"
style="height: 52px; min-height: 52px; max-height: 52px;"></textarea>
</div>
<!---->
</div>
</div>
</form>
<div class="ivu-row" id="rollCounts">
<div class="r-left" style="margin-left: 0px;">已扫描记录</div>
</div>
<div class="ivu-row" style="margin-top: 10px; margin-left: 5px;">
<div class="ivu-col ivu-col-span-6">
<button type="button" onclick="intervalScanModal()" class="ivu-btn ivu-btn-primary">
<span>区间扫描</span>
</button>
</div>
<div class="ivu-col ivu-col-span-6" style="margin-left: 15px;">
<button type="button" onclick="endScan('Y')" class="ivu-btn ivu-btn-primary">
<span>合格放行</span>
</button>
</div>
<div class="ivu-col ivu-col-span-4" style="margin-left: 15px;">
<button type="button" onclick="endScan('N')" class="ivu-btn ivu-btn-primary">
<span>判退</span>
</button>
</div>
<div class="ivu-col ivu-col-span-4" style="margin-left: 10px;">
<button onclick="goBack()" class="ivu-btn ivu-btn-primary">
<span>返回</span>
</button>
</div>
</div>
</div>
<!-- 扫码操作 -->
<div class="modal fade" id="interval_roll_modal" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog" style="width:260px; margin: 10% auto;">
<div class="modal-content" >
<div class="modal-body">
<form id="interval_roll_form" class="form-horizontal" action="" method="post" novalidate>
<fieldset>
<div id="legend" class="">
<legend class="" style="font-size: 18px;">区间扫描</legend>
</div>
<div class="">
<div style="margin-left: 10px; margin-top: 25px; width: 60px; height: 15px;">
<span style="font-size: 12px; font-weight: 700;">开始卷号</span>
</div>
<div style="margin-left: 60px; margin-top: -25px; height: 30px;">
<input id="start_roll_no" class="scan-code" name="startRollNo" style="width: 120px; border-width: 1.5px; border-style: solid;">
</div>
<div style="margin-left: 10px; margin-top: 25px; width: 60px; height: 15px;">
<span style="font-size: 12px; font-weight: 700;">结束卷号</span>
</div>
<div style="margin-left: 60px; margin-top: -25px; height: 40px;">
<input id="end_roll_no" class="scan-code" name="endRollNo" style="width: 120px; border-width: 1.5px; border-style: solid;">
</div>
</div>
</fieldset>
</form>
</div>
<div class="modal-footer" style="TEXT-ALIGN: center; margin-top: -5px;">
<div class="control-group">
<!-- Button -->
<div class="controls">
<button id="end_scan" onclick="endIntervalScan()" class="btn btn-success">结束扫描</button>
<button id="end_cancle" data-dismiss="modal" class="btn btn-success">取消</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
<script type="text/javascript" src="/pda/bootstrap/3.3.7/js/bootstrap.js"></script>
<script type="text/javascript" src="/pda/layer/layer.js"></script>
<script type="text/javascript" src="/pda/js/qa/qa_check.js"></script>
<script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
</html>