hjg
2024-07-09 4fd62ace17390b0b9cc37c55e88582134ec18c28
提交 | 用户 | 时间
58d006 1 <?xml version="1.0" encoding="UTF-8"?>
A 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:c="http://java.sun.com/jsp/jstl/core"
5 xmlns:h="http://java.sun.com/jsf/html"
6 xmlns:f="http://java.sun.com/jsf/core"
7 xmlns:ui="http://java.sun.com/jsf/facelets">
8 <ui:composition template="/template/nit/tmp_brief.xhtml">
9     <ui:define name="acss">
10         <style>
11         #searchBtn {
12             height: 34px;
13         }
14         p.error {
15             color: #D9534F
16         }
17         input.error {
18             border: 1px solid #D9534F;
19         }
20         #simple-table th,#simple-table td{
21             text-align: center;
22             padding: 1px 8px;
23         }
24         #form .control-label {
25             margin-right: -14px
26         }
27         .t-error{
28             color: red;
29             position: relative;
30             right: 2px;
31             top: 3px;
32         }
33         i.fa.danger {
34             color: #D15B47
35         }
36         i.fa.success {
37             color: #87B87F
38         }
39         .pagination {
40             margin: 10px 0;
41         }
42         #simple-table th {
43             padding: 0
44         }
45         .th {
46             position: relative;
47             width: 100%;
48             display: block;
49             background: #F2F2F2;
50             border: 1px solid #DDDDDD;
51             z-index: 1;
52             border-left: none;
53         }
54         .btn-xs, .btn-group-xs > .btn{
55             padding-top: 0px;
56             padding-bottom: 0px;
57         }
58         </style>
59     </ui:define>
60     <ui:define name="acontent">
61       
62         <div class="row" style="width: 100%;height: 100%">
63         <div style=" margin:0 auto;margin-top: 200px;">
64          <div class="col-xs-3">
65             <button class="btn btn-sm btn-default" type="button" id="tjBtn">
66                         <i class="ace-icon fa fa-search bigger-110"></i>
67                         每日统计
68             </button>
69          </div>
70             <div class="col-xs-5">
71
72                 <div class="input-group" >
73                    <span class="input-group-btn" style="font-size: 20px">卡号:</span>
74                     <input class="form-control input-mask-date" type="text" id="keyword" style="float: left;" placeholder="输入卡号搜索"/>
75                     <span class="input-group-btn">
76                         <button class="btn btn-sm btn-default" type="button" id="searchBtn">
77                             <i class="ace-icon fa fa-search bigger-110"></i>
78                             搜索
79                         </button>
80                     </span>
81                     <!-- <span> -->
82                          
83                    <!--  </span> -->
84                 </div>
85             </div>
86         </div>
87         </div>
88     </ui:define>
89     <ui:define name="myscript">
90     <script type="text/javascript">
91         $('#searchBtn').click(function(event) {
92           window.location.href='/task/printbycard.htm?cardno='+$('#keyword').val()
93         });
94     </script>
95     </ui:define>
96 </ui:composition>
97 </html>