84 lines
3.6 KiB
HTML
84 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>新增需求计划外机具</title>
|
|
<link rel="stylesheet" href="../../../lib/layui-v2.9.18/layui/css/layui.css" media="all">
|
|
<link rel="stylesheet" href="../../../css/font.css" media="all">
|
|
<link rel="stylesheet" href="../../../css/data_form.css" media="all">
|
|
<link rel="stylesheet" href="../../../css/demandPlan/add_jj_data.css" media="all">
|
|
<link rel="stylesheet" href="../../../css/tips.css" media="all">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main-box">
|
|
<div style="width: 100%;height: 100px;margin-bottom: 20px;">
|
|
<table class="classTable">
|
|
<thead>
|
|
<tr>
|
|
<th><span class="required">*</span>机具名称</th>
|
|
<th>规格</th>
|
|
<th><span class="required">*</span>单位</th>
|
|
<th>库存量</th>
|
|
<th><span class="required">*</span>本次发货量</th>
|
|
<th>备注</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<form class='layui-form'><select id="name" class='layui-select' lay-search lay-filter="name">
|
|
</select></form>
|
|
</td>
|
|
<td>
|
|
<form class='layui-form'><select id="module" class='layui-select' lay-search lay-filter="module">
|
|
</select></form>
|
|
</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>
|
|
<form class='layui-form'><input id="fhNum" class='layui-input' value='1' maxlength='6'
|
|
onblur='handleNum(this,this.value)'></form>
|
|
</td>
|
|
<td>
|
|
<form class='layui-form'><input id="remark" class='layui-input' maxlength='60'></form>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div id="basic-box">
|
|
<p style="font-weight: bold;font-size: 16px;margin-top: 10px;">需求计划外机具数据:</p>
|
|
<table class="classTable2" style="margin-top: 15px;">
|
|
<thead>
|
|
<tr>
|
|
<th>机具名称</th>
|
|
<th>规格</th>
|
|
<th>单位</th>
|
|
<th>库存量</th>
|
|
<th>本次发货量</th>
|
|
<th>备注</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="btn-box">
|
|
<button class="layui-btn layui-btn-primary" onclick="closePage()">取消</button>
|
|
<button class="layui-btn layui-bg-blue" onclick="saveData()">确定</button>
|
|
<button class="layui-btn layui-bg-blue" onclick="addTableData()">保存并继续添加</button>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script src="../../../lib/jquery-3.4.1/jquery-3.7.1.min.js" charset="utf-8"></script>
|
|
<script src="../../../js/public.js" charset="utf-8"></script>
|
|
<script src="../../../lib/layui-v2.9.18/layui/layui.js" charset="utf-8"></script>
|
|
<script src="../../../js/demandPlan/child/add_jj_data.js" charset="utf-8"></script>
|
|
|
|
</html> |