CylinderdataQuery1modify.jsp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ page import="com.runzhixing.bean.CityPlace" %>
  3. <%@ page import="com.runzhixing.bean.CountryPlace" %>
  4. <%@ page import="com.runzhixing.bean.Station" %>
  5. <%@ page import="com.runzhixing.bean.AuthorityRegionPlace" %>
  6. <%@ page import="com.runzhixing.bean.User" %>
  7. <%@ page import="com.runzhixing.constant.Constant" %>
  8. <%@ page import="com.runzhixing.tool.Util" %>
  9. <%@page import="java.net.URLEncoder"%>
  10. <%
  11. String path = request.getContextPath();
  12. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  13. User user = (User)session.getAttribute(Constant.userMark);
  14. List<AuthorityRegionPlace> arplist = user.getPrivilegePlaces1();
  15. List<CityPlace> cplist = new ArrayList<CityPlace>();
  16. List<CountryPlace> cyplist = new ArrayList<CountryPlace>();
  17. %>
  18. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  19. <html>
  20. <head>
  21. <base href="<%=basePath%>">
  22. <title>气瓶数据查询</title>
  23. <meta http-equiv="pragma" content="no-cache">
  24. <meta http-equiv="cache-control" content="no-cache">
  25. <meta http-equiv="expires" content="0">
  26. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  27. <meta http-equiv="description" content="This is my page">
  28. <meta http-equiv="X-UA-Compatible" content="IE=9"/>
  29. <meta http-equiv="X-UA-Compatible" content="IE=10"/>
  30. <link rel="stylesheet" type="text/css" href="css/easyui/themes/default/easyui.css">
  31. <link rel="stylesheet" type="text/css" href="css/easyui/themes/icon.css">
  32. <link rel="stylesheet" type="text/css" href="css/easyui/demo/demo.css">
  33. <script type="text/javascript" src="css/easyui/jquery.min.js"></script>
  34. <script type="text/javascript" src="css/easyui/jquery.easyui.min.js" charset="utf-8"></script>
  35. <script type="text/javascript" src="css/easyui/locale/easyui-lang-zh_CN.js" charset="utf-8"></script>
  36. <link rel="stylesheet" type="text/css" href="css/common/hzbstyle.css">
  37. <script type="text/javascript" src="js/easyui/export.js"></script>
  38. <script type="text/javascript" src="js/common/area.js"></script>
  39. <style type="text/css">
  40. a:HOVER{
  41. color: red;
  42. text-decoration: none;
  43. }
  44. a{
  45. color: #f08300;
  46. text-decoration: none;
  47. }
  48. </style>
  49. <script type="text/javascript">
  50. var grid="";
  51. var exportString="";
  52. var i = 1;//第几页
  53. var pageSize =10;
  54. var sum;//总条数
  55. var totalpage;//总页数
  56. $(document).ready(function(){
  57. fLoadTable();
  58. pageSize = $('#pageSize').val();
  59. selectCountry();
  60. selectCompany();
  61. selectinstallStation();
  62. });
  63. function fLoadTable(){
  64. grid=$('#tt').datagrid({
  65. fit: true,//自动大小
  66. title: '气瓶数据查询',
  67. width: '120%',
  68. height: 580,
  69. toolbar: '#toolbar',
  70. loadMsg:'正在加载, 请稍等 …',
  71. nowrap : true,//设置为true,当数据长度超出列宽时将会自动截取
  72. striped : true,//设置为true将交替显示行背景
  73. collapsible : true,//显示可折叠按钮
  74. fitColumns:false,//允许表格自动缩放,以适应父容器
  75. rownumbers:true,
  76. pagination:true,//分页控件
  77. columns:[[
  78. {field:'cylinderno1',align:'center',title:'操作',width:75,formatter: function(value, row, index){
  79. return '<a href="jsp/rzx/dataQuery/CylinderFollow?cylinderguid='+row.cylinderGuid+'" target="_blank">'+"追踪气瓶"+'</a>';
  80. }},
  81. {field:'unitName',align:'center',title:'气瓶隶属单位',width:100},
  82. {field:'carNo',align:'center',title:'车牌号',width:85,formatter: function(value, row, index){
  83. return '<a href="machineDetail?carNo='+value+'&appType='+row.appType+'&operState='+row.operState+'&plateType='+row.plateType+'&carGuid='+row.carGuid+'" target="_blank">'+value+'</a>';
  84. }},
  85. {field:'plateTypeName',align:'center',title:'车牌类型',width:60},
  86. {field:'appTypeName',align:'center',title:'应用类型',width:85},
  87. {field:'cylinderNo',align:'center',title:'气瓶出厂编号',width:80},
  88. {field:'cylinderTypeName',align:'center',title:'类型',width:135},
  89. {field:'productNo',align:'center',title:'厂家简称',width:60},
  90. {field:'productDate1',align:'center',title:'生产年月',width:95},
  91. {field:'cylinderStateName',align:'center',title:'使用状态',width:'100px',formatter: function(value, row, index){
  92. if(value){
  93. if(value == "在用"){
  94. return '<font style="color:green;font-weight: bold;">'+value+'</font>';
  95. }else{
  96. return '<font style="color:red;font-weight: bold;">'+value+'</font>';
  97. }
  98. }
  99. return value;
  100. }},
  101. {field:'cylinderState',align:'center',title:'使用状态',width:60,formatter: function(value, row, index){
  102. if (value == "0") {
  103. return '<font style="color:green;font-weight: bold;">'+"在用"+'</font>';
  104. }
  105. else if(value == "1") {
  106. return '<font style="color:red;font-weight: bold;">'+"报废"+'</font>';
  107. }else if(value == "2") {
  108. return '<font style="color:red;font-weight: bold;">'+"超期未检"+'</font>';
  109. }else if(value == "3") {
  110. return '<font style="color:red;font-weight: bold;">'+"周转"+'</font>';
  111. }}},
  112. {field:'productLicence',align:'center',title:'许可证号',width:125},
  113. {field:'cylinderRegNo',align:'center',title:'气瓶使用编号',width:105},
  114. {field:'timesAvailable',align:'center',title:'可充装次数',width:95},
  115. {field:'yearLimit',align:'center',title:'使用年限',width:'100px'},
  116. {field:'startUseDate1',align:'center',title:'开始投用时间',width:95},
  117. {field:'productType',align:'center',title:'型号',width:'160px'},
  118. {field:'weight',align:'center',title:'重量',width:'100px',formatter: function(value, row, index){
  119. if(value){
  120. return value.toFixed(1);
  121. }
  122. return value;
  123. }
  124. },
  125. {field:'vol',align:'center',title:'容积',width:'100px',formatter: function(value, row, index){
  126. if(value){
  127. return value.toFixed(1);
  128. }
  129. return value;
  130. }},
  131. {field:'thickness',align:'center',title:'壁厚',width:'100px',formatter: function(value, row, index){
  132. if(value){
  133. return value.toFixed(1);
  134. }
  135. return value;
  136. }},
  137. {field:'press',align:'center',title:'压力',width:'100px',formatter: function(value, row, index){
  138. if(value){
  139. return value.toFixed(1);
  140. }
  141. return value;
  142. }},
  143. {field:'material',align:'center',title:'材质',width:'100px'},
  144. {field:'fibre',align:'center',title:'纤维',width:'100px'},
  145. {field:'resin',align:'center',title:'树脂',width:'100px'},
  146. {field:'fillTimes',align:'center',title:'充装次数',width:'100px'},
  147. {field:'operStateName',align:'center',title:'操作状态',width:'120px'},
  148. {field:'installStation',align:'center',title:'安装单位',width:'180px'},
  149. {field:'installDate1',align:'center',title:'安装日期',width:'100px'},
  150. {field:'checkState',align:'center',title:'检验状态',width:'100px',formatter: function(value, row, index){
  151. if (value == "0") {
  152. return '<font style="color:green;font-weight: bold;">'+"合格"+'</font>';
  153. }
  154. else if(value == "1") {
  155. return '<font style="color:red;font-weight: bold;">'+"不合格"+'</font>';
  156. }}},
  157. {field:'checkstatename',align:'center',title:'检验状态',width:'100px'},
  158. {field:'installLicence',align:'center',title:'安装许可',width:'120px'},
  159. {field:'installCert',align:'center',title:'安装合格证',width:'120px'},
  160. {field:'installTypeName',align:'center',title:'安装类别',width:'100px'},
  161. {field:'installLoc',align:'center',title:'安装位置',width:'100px'},
  162. {field:'installWorkerName',align:'center',title:'安装人员',width:'100px'},
  163. {field:'monitorStation',align:'center',title:'安装监检单位',width:'160px'},
  164. {field:'monitorDate1',align:'center',title:'安装监检日期',width:'100px'},
  165. {field:'installLoc',align:'center',title:'安装位置',width:'100px'},
  166. {field:'installWorkerName',align:'center',title:'安装人员' ,width:'100px'},
  167. {field:'monitorStation',align:'center',title:'安装监检单位' ,width:'100px'},
  168. {field:'monitorDate1',align:'center',title:'安装监检日期' ,width:'100px'},
  169. {field:'monitorLicence',align:'center',title:'安装监检许可' ,width:'100px'},
  170. {field:'monitorCert',align:'center',title:'安装监检证书' ,width:'100px'},
  171. {field:'monitorWorkername',align:'center',title:'安装监检人员' ,width:'100px'},
  172. {field:'checkStation',align:'center',title:'检验单位' ,width:'100px'},
  173. {field:'checkDate1',align:'center',title:'最后一次检验时间' ,width:'100px'},
  174. {field:'checkLicence',align:'center',title:'检验许可' ,width:'100px'},
  175. {field:'checkCert',align:'center',title:'检验证书' ,width:'100px'},
  176. {field:'checkState',align:'center',title:'检验状态' ,width:'100px'},
  177. {field:'nextCheckDate1',align:'center',title:'下次检验时间' ,width:'100px'},
  178. {field:'checkWorkerName',align:'center',title:'检验人员' ,width:'100px'},
  179. {field:'tagno',align:'center',title:'标签编号' ,width:'100px'},
  180. {field:'tagUid',align:'center',title:'标签UID' ,width:'100px'},
  181. {field:'tagAppTypeName',align:'center',title:'标签主类型' ,width:'100px'},
  182. {field:'tagTypeName',align:'center',title:'标签类型' ,width:'100px'},
  183. {field:'tagStation',align:'center',title:'发标签站点编号' ,width:'100px'},
  184. {field:'tagOperator',align:'center',title:'发标签操作员编号' ,width:'100px'},
  185. {field:'tagOperTime1',align:'center',title:'发标签时间',width:'100px'},
  186. {field:'tagOperStateName',align:'center',title:'发标签状态' ,width:'100px'},
  187. {field:'editStation',align:'center',title:'登记,修改站点编号' ,width:'160px'},
  188. {field:'editOperator',align:'center',title:'登记,修改操作员编号' ,width:'120px'},
  189. {field:'editOperTime1',align:'center',title:'登记,修改时间',width:'160px'},
  190. {field:'auditStation',align:'center',title:'审核站点编号' ,width:'100px'},
  191. {field:'auditOperator',align:'center',title:'审核操作员编号' ,width:'100px'},
  192. {field:'auditOperTime1',align:'center',title:'审核时间',width:'100px'}
  193. ]]
  194. });
  195. $('#tt').datagrid('hideColumn','cylinderState');
  196. $('#tt').datagrid('hideColumn','checkState');
  197. }
  198. function fLoadData(page,rows){
  199. if(!$('#company option:selected').text()){
  200. return false;
  201. }
  202. if(!$('#installStation option:selected').text()){
  203. return false;
  204. }
  205. $.messager.progress({
  206. title: '请等待',
  207. msg: '正在加载数据...',
  208. text: '查询中.......'
  209. });
  210. $.ajax({
  211. type:"POST",
  212. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  213. data:$('#Cylinder11form').serialize(),
  214. url:"ajax/cylinderDataQuery?page="+page+"&psize="+rows,
  215. success:function (data){
  216. $.messager.progress('close');
  217. var vData = $.parseJSON(data);
  218. sum = vData.total;
  219. if(sum==0){
  220. show("没有查询到相关信息!!!");
  221. }
  222. totalpage = Math.ceil(sum/rows);
  223. $('#tt').datagrid('loadData', vData); //将数据绑定到datagrid
  224. var p = $('#tt').datagrid('getPager');
  225. $(p).pagination({
  226. pageList: [10,20,30,100,200,400],//可以设置每页记录条数的列表
  227. beforePageText: '第',//页数文本框前显示的汉字
  228. afterPageText: '页 共 {pages} 页',
  229. displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录',
  230. onSelectPage: function (pageNumber, pageSize) {
  231. fLoadData(pageNumber, pageSize);
  232. }
  233. });
  234. }
  235. });
  236. }
  237. function changeSize(){
  238. fLoadData(1,10);
  239. }
  240. function selectCountry(){
  241. var id=document.getElementById("city").value;
  242. var select = document.getElementById("country");
  243. for(var i=select.options.length-1;i>=0;i--) {
  244. select.options.remove(i);
  245. }
  246. $.ajax({
  247. type:"POST",
  248. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  249. url:"ajax/hiddenCity?cityId="+id,
  250. success:function (data){
  251. var obj=eval("(" + data + ")");
  252. $.each(obj.rows, function(i,item){
  253. select.options.add(new Option(item.name, item.id));
  254. });
  255. }
  256. });
  257. }
  258. function selectCountry1(){
  259. selectCountry();
  260. selectCompany();
  261. selectinstallStation();
  262. }
  263. function selectCompany(){
  264. var ii=1;
  265. var select = document.getElementById("company");
  266. for(var i=select.options.length-1;i>=0;i--) {
  267. select.options.remove(i);
  268. }
  269. $.ajax({
  270. type:"POST",
  271. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  272. data:$('#Cylinder11form').serialize(),
  273. url:"ajax/hiddenUnit",
  274. //url:"ajax/modifyStationInfoCheck",
  275. success:function (data){
  276. if(ii==1){
  277. select.options.add(new Option("全部", ""));
  278. ii++;
  279. }
  280. var obj=eval("(" + data + ")");
  281. $.each(obj.rows, function(i,item){
  282. select.options.add(new Option(item.name, item.id));
  283. });
  284. }
  285. });
  286. }
  287. function selectinstallStation(){
  288. var ii=1;
  289. var select = document.getElementById("installStation");
  290. for(var i=select.options.length-1;i>=0;i--) {
  291. select.options.remove(i);
  292. }
  293. $.ajax({
  294. type:"POST",
  295. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  296. data:$('#Cylinder11form').serialize(),
  297. url:"ajax/hiddenspeStation?type=3",
  298. success:function (data){
  299. var obj=eval("(" + data + ")");
  300. var sum = obj.total;
  301. $.each(obj.rows, function(i,item){
  302. select.options.add(new Option(item.name, item.id));
  303. });
  304. }
  305. });
  306. }
  307. function selectCompany1(){
  308. selectCompany();
  309. selectinstallStation();
  310. }
  311. function expt1(){
  312. expt(grid);
  313. }
  314. function exptSingle(){
  315. if(!grid){
  316. alert("数据为空");
  317. return;
  318. }else{
  319. expt(grid);
  320. }
  321. }
  322. function exptAll(){
  323. fLoadDataAll(1,5000);
  324. }
  325. function show(message) {
  326. $.messager.show({
  327. title: '提示信息',
  328. msg: message,
  329. timeout: 2000,
  330. showType: 'slide'
  331. });
  332. }
  333. function fLoadDataAll(page,rows){
  334. document.getElementById("pageNumber").innerText = i;
  335. document.getElementById("from").innerText = (page-1)*rows;
  336. document.getElementById("to").innerText = page*rows;
  337. $.messager.progress({
  338. title: '请等待',
  339. msg: '正在加载数据...',
  340. text: '查询中.......'
  341. });
  342. $.ajax({
  343. type:"POST",
  344. contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  345. data:$('#Cylinder11form').serialize(),
  346. url:"ajax/cylinderDataQuery?page="+page+"&psize="+rows,
  347. success:function (data){
  348. $.messager.progress('close');
  349. var vData = $.parseJSON(data);
  350. sum = vData.total;
  351. if(sum==0){
  352. show("没有查询到相关信息!!!");
  353. }
  354. totalpage = Math.ceil(sum/rows);
  355. document.getElementById("total").innerText = sum;
  356. document.getElementById("totalpage").innerText = totalpage;
  357. var vData = $.parseJSON(data);
  358. $('#tt').datagrid('loadData', vData); //将数据绑定到datagrid
  359. var p = $('#tt').datagrid('getPager');
  360. $(p).pagination({
  361. pageList: [10,20,30,100,200,400],//可以设置每页记录条数的列表
  362. beforePageText: '第',//页数文本框前显示的汉字
  363. afterPageText: '页 共 {pages} 页',
  364. displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录',
  365. onSelectPage: function (pageNumber, pageSize) {
  366. fLoadData(pageNumber, pageSize);
  367. }
  368. });
  369. if(!grid){
  370. alert("数据为空");
  371. return false;
  372. }else{
  373. expt(grid);
  374. }
  375. }
  376. });
  377. }
  378. </script>
  379. </head>
  380. <body>
  381. <!-- 查询结果:数据表格 -->
  382. <table id="tt" cellspacing="0" cellpadding="0" >
  383. </table>
  384. <div id="toolbar" style="padding-top: 0px;height: auto;">
  385. <form id="Cylinder11form" action="ajax/Cylinder11form" method="post">
  386. <span class="easyui-linkbutton" style="cursor: default;margin-bottom: 5px;"><span class="hzbspan" style="color: #f08300;font-size: 16px;" >查询条件:</span></span>
  387. <span class="easyui-linkbutton" style="cursor: default;margin-bottom: 5px;"><span class="hzbspan" style="color: #f08300;font-size: 16px;" >省:</span></span>
  388. <select name="province" id="province" style="width: auto;height: 24px;min-width: 100px;" class="hzbspan">
  389. <%for(AuthorityRegionPlace arp:arplist){
  390. cplist = arp.getCityPlace();
  391. %>
  392. <option value="<%=arp.getId() %>">
  393. <%=arp.getName() %>
  394. </option>
  395. <%} %>
  396. </select>
  397. <span class="easyui-linkbutton" style="cursor: default;margin-bottom: 5px;"><span class="hzbspan" style="color: #f08300;font-size: 16px;" >市:</span></span>
  398. <select name="city" id="city" style="width: auto;height: 24px;min-width: 100px;" class="hzbspan" onchange="selectCountry1()">
  399. <%
  400. for(CityPlace cp:cplist){
  401. cyplist = cp.getSubPlaceList();
  402. %>
  403. <option value="<%=cp.getId() %>">
  404. <%=cp.getName() %>
  405. </option>
  406. <%} %>
  407. </select>
  408. <span class="easyui-linkbutton" style="cursor: default;margin-bottom: 5px;"><span class="hzbspan" style="color: #f08300;font-size: 16px;" >县:</span></span>
  409. <select name="country" id = "country" style="width: auto;height: 24px;min-width: 100px;" class="hzbspan" onchange="selectCompany1();" >
  410. </select>
  411. <br/>
  412. <span class="easyui-linkbutton" style="cursor: default;margin-bottom: 5px;"><span class="hzbspan" style="color: #f08300;font-size: 16px;" >企业:</span></span>
  413. <select name="company" id = "company" style="width: auto;height: 24px;min-width: 100px;" class="hzbspan" >
  414. <option value="">全部</option>
  415. </select>
  416. <span class="easyui-linkbutton" style="cursor: default;margin-bottom: 5px;"><span class="hzbspan" style="color: #f08300;font-size: 16px;" >安装单位:</span></span><select name="installStation" id="installStation" style="width: auto;height: 24px;" class="hzbspan">
  417. </select>
  418. <table>
  419. <tr>
  420. <td>
  421. <span style="cursor: default"><span class="hzbspan">车牌号:</span></span></td>
  422. <td><input type="text" name="carNo" id="carNo" style="width: 100px;height: 24px;" class="hzbspan">
  423. </td>
  424. <td>
  425. <span style="cursor: default"><span class="hzbspan">下次检验开始时间:</span></span></td>
  426. <td><input type="text" id="searchst" name ="searchst" class="easyui-datebox" style="width: 100px;height: auto">
  427. </td>
  428. <td>
  429. <span style="cursor: default"><span class="hzbspan">气瓶出厂编号:</span></span></td>
  430. <td><input type="text" name="cylinderNo" id="cylinderNo" style="width: 100px;height: 24px;" class="hzbspan">
  431. </td>
  432. <td>
  433. <input type="hidden" name="regNo" value="" /> </td>
  434. </tr>
  435. <tr>
  436. <td>
  437. <span style="cursor: default"><span class="hzbspan">气瓶厂家编号:</span></span></td>
  438. <td><input type="text" name="productNo" id="productNo" style="width: 100px;height: 24px;" class="hzbspan">
  439. </td>
  440. <td>
  441. <span style="cursor: default"><span class="hzbspan">下次检验结束时间:</span></span></td>
  442. <td><input type="text" id="searchet" name="searchet" class="easyui-datebox" style="width: 100px;height: auto">
  443. </td>
  444. <td>
  445. <span style="cursor: default"><span class="hzbspan">气瓶类型:</span></span></td>
  446. <td><select name="cylinderType" id="cylinderType" style="width: auto;height: 24px;" class="hzbspan" >
  447. <option value="-1" selected="selected">全部</option>
  448. <option value="0">其他</option>
  449. <option value="1">钢质气瓶</option>
  450. <option value="2">钢质内胆环向缠绕气瓶</option>
  451. <option value="3">铝合金内胆全缠绕气瓶</option>
  452. <option value="4">塑料内胆全缠绕气瓶</option>
  453. <option value="5">LNG液化天然气气瓶</option>
  454. </select>
  455. </td>
  456. </tr>
  457. <tr>
  458. <td>
  459. <span style="cursor: default"><span class="hzbspan">车牌类型:</span></span></td>
  460. <td><select name="plateType" id="plateType" style="width: auto;height: 24px;" class="hzbspan" >
  461. <option value="-1" se>全部</option>
  462. <option value="0">其它</option>
  463. <option value="1">大型汽车</option>
  464. <option value="2">小型汽车</option>
  465. <option value="3">使馆汽车</option>
  466. <option value="4">领馆汽车</option>
  467. <option value="5">境外汽车</option>
  468. <option value="6">外籍汽车</option>
  469. <option value="7">两、三轮摩托车</option>
  470. <option value="8">轻便摩托车</option>
  471. <option value="9">使馆摩托车</option>
  472. <option value="10">领馆摩托车</option>
  473. <option value="11">境外摩托车</option>
  474. <option value="12">外籍摩托车</option>
  475. <option value="13">农用运输车</option>
  476. <option value="14">拖拉机</option>
  477. <option value="15">挂车</option>
  478. <option value="16">教练汽车</option>
  479. <option value="17">教练摩托车</option>
  480. <option value="18">试验汽车</option>
  481. <option value="19">试验摩托车</option>
  482. <option value="20">临时入境汽车</option>
  483. <option value="21">临时入境摩托车</option>
  484. <option value="22">临时行驶车</option>
  485. <option value="23">警用汽车</option>
  486. <option value="24">警用摩托车</option>
  487. </select>
  488. </td>
  489. <td>
  490. <span style="cursor: default"><span class="hzbspan">安装开始时间:</span></span></td>
  491. <td><input type="text" name="installStartTime" id="installStartTime" class="easyui-datebox" style="width: 100px;height: auto">
  492. </td>
  493. <td>
  494. <span style="cursor: default"><span class="hzbspan">应用类型:</span></span></td>
  495. <td><select name="appType" id="appType" style="width: 100px;height: 24px;" class="hzbspan" >
  496. <option value="-1" selected="selected">全部</option>
  497. <option value="0">其他</option>
  498. <option value="1">出租</option>
  499. <option value="2">公交</option>
  500. <option value="3">私用</option>
  501. <option value="4">货运</option>
  502. <option value="5">客运</option>
  503. <option value="6">营转非</option>
  504. <option value="9">外地车</option>
  505. </select>
  506. </td>
  507. </tr>
  508. <tr><td>
  509. <span style="cursor: default"><span class="hzbspan">车主单位:</span></span></td>
  510. <td><input type="text" name="carOwenerUnit" id="carOwenerUnit" style="width: 100px;height: 24px;" class="hzbspan">
  511. </td>
  512. <td>
  513. <span style="cursor: default"><span class="hzbspan">安装结束时间:</span></span></td>
  514. <td><input type="text" name="installEndTime" id="installEndTime" class="easyui-datebox" style="width: 100px;height: auto">
  515. </td>
  516. <td>
  517. <span style="cursor: default"><span class="hzbspan">操作状态:</span></span></td>
  518. <td><select name="opeState" id="opeState" style="width: auto;height: 24px;" class="hzbspan" >
  519. <option value="-1" selected="selected">全部</option>
  520. <option value="0">新数据,要求审核</option>
  521. <option value="1">安装完成,要求监检</option>
  522. <option value="2">监检完成,要求审核</option>
  523. <option value="3">检验完成,要求审核或复装</option>
  524. <option value="4">审核完成</option>
  525. <option value="5">已经发标签</option>
  526. <option value="6">数据审核不通过</option>
  527. <option value="7">检验后数据不通过</option>
  528. <option value="8">过户后审核不通过</option>
  529. <option value="9">监检不通过</option>
  530. <option value="10">未发标签</option>
  531. <option value="21">申请加瓶</option>
  532. <option value="22">申请减瓶</option>
  533. <option value="31">过户,要求审核</option>
  534. <option value="41">已注销</option>
  535. </select>
  536. </td></tr>
  537. <tr><td>
  538. <span style="cursor: default"><span class="hzbspan">状态:</span></span></td>
  539. <td><select name="state" id="state" style="width: 100px;height: 24px;" class="hzbspan" >
  540. <option value="-1">全部</option>
  541. <option value="0">在用</option>
  542. <option value="1">检验报废</option>
  543. <option value="2">超期未检</option>
  544. <option value="3">周转</option>
  545. <option value="4">注销</option>
  546. <option value="5">超限报废</option>
  547. </select>
  548. </td>
  549. <td>
  550. <span style="cursor: default"><span class="hzbspan">安装类型:</span></span></td>
  551. <td><select name="installType" id="installType" style="width: 100px;height: 24px;" class="hzbspan" >
  552. <option value="-1">全部</option>
  553. <option value="0">第一次安装</option>
  554. <option value="1">复装</option>
  555. <option value="2">整车出厂</option>
  556. </select>
  557. </td>
  558. <td>
  559. <a id="btninfosearch" onclick="changeSize();" class="easyui-linkbutton" icon="icon-search" href="javascript:void(0)" style="margin-bottom: 5px;" ><span class="hzbspan" style="color: #f08300;font-size: 16px;">查询</span></a>
  560. </td>
  561. <td>
  562. <a id="btninfosearch" onclick="exptSingle();" class="easyui-linkbutton" icon="icon-save" href="javascript:void(0)" style="margin-bottom: 5px;" ><span class="hzbspan" style="color: #f08300;font-size: 16px;">导出</span></a>
  563. </td>
  564. </tr>
  565. </table>
  566. </form>
  567. </div>
  568. <div id="dialog2"></div>
  569. </body>
  570. </html>