Edit D:\rfid\libsystem\page\acquisition\acq_ordermenu.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; String type = "0"; String typeTitle = "???"; if(request.getParameter("type") != null){ type = request.getParameter("type") ; } if(type.equals("1")){ typeTitle = "???"; } %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>????????</title> <%@ include file="../global/linkcss.jsp" %> </head> <body class="m-top"> <!-- ????? ???????????????? --> <div class="tool-div"> <div class="easyui-panel m-top" data-options="fit:true" style="padding: 5px;" > <a href="javascript:void(0)" class="easyui-linkbutton" data-options="plain:true,iconCls:'e-icon fa fa-search'" onclick="searchRecord()">???</a> <a href="javascript:void(0)" class="easyui-linkbutton" data-options="plain:true,iconCls:'e-icon fa fa-plus'" onclick="insertRecord()">???</a> <a href="javascript:void(0)" class="easyui-linkbutton" data-options="plain:true,iconCls:'e-icon fa fa-edit '" onclick="updateRecord()">???</a> <a href="javascript:void(0)" class="easyui-linkbutton" data-options="plain:true,iconCls:'e-icon fa fa-trash'" onclick="deleteRecord()" >???</a> </div> </div> <div class="tool-div-search m-top-3"> <div class="easyui-panel" data-options="fit:true" style="padding: 5px;"> ????? <select id="search_sysid" item-type="search" item-no-init="0" class="easyui-combobox" style="width:180px;height: 24px;" editable="false" data-options=""> </select> ??? <select id="search_libcode" no-limit="" item-type="search" class="easyui-combobox" style="width:140px;height: 24px;" editable="false" data-options=""> </select> ??? <select id="search_bookseller" no-limit="" item-type="search" class="easyui-combobox" style="width:140px;height: 24px;" editable="false" data-options=""> </select> ???? <select id="search_status" no-limit="" item-type="search" class="easyui-combobox" required="true" style="width:160px;height: 24px;" editable="false" data-options="panelHeight:'auto'"> <option value="" selected="selected">???</option> <option value="1">???</option> <option value="2">???</option> </select> </div> </div> <div class="m-top datagrid-div"> <table title="?????????" id="datagrid-single" class="easyui-datagrid" style="margin-top: -1px;" data-options="singleSelect:true,fit:true,fitColumns:true,pagination:true,striped:true" > <thead> <tr> <th data-options="field:'code'" width="100">???</th> <th data-options="field:'name'" width="120">???</th> <th data-options="field:'libcode',formatter:onShowLibName" width="100">??????</th> <th data-options="field:'bookseller',formatter:onShowBooksellerName" width="120">??????</th> <th data-options="field:'status',formatter:onShowOrderMenuStatus" width="100">????</th> <th data-options="field:'year'" width="80">?????</th> <th data-options="field:'enddate',formatter:onShowFmtDate" width="120">??????</th> <th data-options="field:'note'" width="200">???</th> </tr> </thead> </table> </div> <!--???????????indow???--> <div id="win" class="easyui-dialog" title="?????????" style="width:500px;height:500px;padding:10px;" data-options=" modal:true,closed:true,toolbar:'#dlg-toolbar',resizable:false,collapsible:false,minimizable:false,maximizable:false,iconCls:'fa fa-gear', onOpen : onOpenWin, onResize:function(){ $(this).window('center'); }"> <!--???????????--> <%@ include file="../parameter/com_savebar.jsp"%> <div class="table-content"> <table class="table-box table-input"> <tr> <td style="width:30%;">???</td> <td><input id="code" item-type="record" class="easyui-textbox" required="true" update-readonly="true" style="width:100%;height: 28px;" data-options="validType:'length[0,32]'"></td> </tr> <tr> <td style="width:30%;">???</td> <td><input id="name" item-type="record" class="easyui-textbox" required="true" style="width:100%;height: 28px;" data-options="validType:'length[0,50]'"></td> </tr> <tr> <td class="div-tr-td" width="10%" style="min-width: 100px;">????????</td> <td width="17%"> <select id="sysid" item-type="record" item-no-init="0" class="easyui-combobox" style="width:100%;height: 24px;" editable="false" data-options=""> </select> </td> </tr> <tr> <td style="width:20%;">???</td> <td style="width:30%;"><select id="libcode" item-type="record" class="easyui-combobox" required="true" style="width:100%;height: 28px;" editable="false" data-options=""> </select></td> </tr> <tr> <td >???</td> <td><select id="bookseller" item-type="record" class="easyui-combobox" required="true" style="width:100%;height: 28px;" editable="false" data-options=""> </select></td> </tr> <tr> <td >????</td> <td><select id="status" item-type="record" class="easyui-combobox" required="true" style="width:100%;height: 28px;" editable="false" data-options="panelHeight:'auto'"> <option value="1" selected="selected">???</option> <option value="2">???</option> </select></td> </tr> <tr> <td style="width:30%;">?????</td> <td><input id="year" item-type="record" class="easyui-numberbox" required="true" style="width:100%;height: 28px;" data-options="validType:'length[0,4]'"></td> </tr> <tr> <td style="width:30%;">??????</td> <td><input id="enddate" required="true" item-type="record" class="easyui-datebox" style="width:100%;height: 28px;" data-options="prompt:'????????:2019-12-31'" ></td> </tr> <tr> <td>???</td> <td><input id="note" item-type="record" class="easyui-textbox" style="width:100%;height: 28px;" data-options="validType:'length[0,50]'" ></td> </tr> </table> </div> </div> <input id="controller_id" hidden="hidden" value="acq/collectcata" ></input> <%@ include file="../global/easyui-dialog.jsp"%> </body> <%@ include file="../global/linkjs.jsp" %> <script type="text/javascript"> var vBibType = '<%=type%>'; </script> <script type="text/javascript" src="${pageContext.request.contextPath}/page/global/grid/js/grid.js?version=<%=MyJspUtils.getVersion() %>"></script> <script type="text/javascript" src="${pageContext.request.contextPath}/page/parameter/js/parameter_public.js?version=<%=MyJspUtils.getVersion() %>"></script> <script type="text/javascript" src="${pageContext.request.contextPath}/page/acquisition/js/acq_ordermenu.js?version=<%=MyJspUtils.getVersion() %>"></script> </html>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de