CylinderdataQuery1testing.jsp 26 KB

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