1 | <?php |
---|
2 | $base_url = base_url(); |
---|
3 | $this->load->view('layout/admin/header', array('base_url' => $base_url)); |
---|
4 | $this->load->view('layout/admin/sidebar', array('base_url' => $base_url, 'method' => $this->router->method, 'class' => $this->router->class)); |
---|
5 | ?> |
---|
6 | <script type="text/javascript"> |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | function filter() |
---|
11 | { |
---|
12 | $.ajax({ |
---|
13 | url: '<?php echo base_url(); ?>admin/reportpackage/getProvince', |
---|
14 | type: "POST", |
---|
15 | data: $("#province").serialize(), |
---|
16 | success: function (data, textStatus, jqXHR) |
---|
17 | { |
---|
18 | // $result = jQuery.parseJSON(data); |
---|
19 | $("#content").html(data); |
---|
20 | }, |
---|
21 | error: function (jqXHR, textStatus, errorThrown) |
---|
22 | { |
---|
23 | $(".ajaxloading").hide(); |
---|
24 | } |
---|
25 | }); |
---|
26 | } |
---|
27 | |
---|
28 | |
---|
29 | </script> |
---|
30 | <style type="text/css" media="screen"> |
---|
31 | .widget-header-flat { |
---|
32 | background: #307ecc; |
---|
33 | color: #fff |
---|
34 | } |
---|
35 | .widget-toolbar>[data-action="collapse"], .header-color-dark>.widget-toolbar>[data-action="collapse"] { |
---|
36 | color: #fff |
---|
37 | } |
---|
38 | .widget-header, .widget-content { |
---|
39 | width: auto |
---|
40 | } |
---|
41 | .widget-body .table thead:first-child tr { |
---|
42 | background: #EDECEC; |
---|
43 | color: #707070; |
---|
44 | font-weight: normal; |
---|
45 | } |
---|
46 | </style> |
---|
47 | |
---|
48 | <div class="main-content" > |
---|
49 | <div id="breadcrumbs" class="breadcrumbs"> |
---|
50 | |
---|
51 | <ul class="breadcrumb"> |
---|
52 | <li> |
---|
53 | <i class="icon-home home-icon"></i> |
---|
54 | <a href="#">Trang chá»§</a> |
---|
55 | </li> |
---|
56 | |
---|
57 | <li> |
---|
58 | <a href="#">Báo cáo</a> |
---|
59 | </li> |
---|
60 | |
---|
61 | </ul><!-- .breadcrumb --> |
---|
62 | |
---|
63 | <div id="nav-search" class="nav-search"> |
---|
64 | |
---|
65 | </div><!-- #nav-search --> |
---|
66 | </div> |
---|
67 | |
---|
68 | |
---|
69 | |
---|
70 | |
---|
71 | <div class="page-content"> |
---|
72 | |
---|
73 | <div class="page-header"> |
---|
74 | <h1> |
---|
75 | Báo cáo |
---|
76 | <small> |
---|
77 | <i class="icon-double-angle-right"></i> |
---|
78 | Thá»ng kê |
---|
79 | </small> |
---|
80 | </h1> |
---|
81 | </div><!-- /.page-header --> |
---|
82 | |
---|
83 | |
---|
84 | <div class="row" id="content"> |
---|
85 | <?php echo $content; ?> |
---|
86 | </div> |
---|
87 | </div> |
---|
88 | </div><!-- /.main-content --> |
---|
89 | </div><!-- /.main-container-inner --> |
---|
90 | |
---|
91 | <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse"> |
---|
92 | <i class="icon-double-angle-up icon-only bigger-110"></i> |
---|
93 | </a> |
---|
94 | </div><!-- /.main-container --> |
---|
95 | |
---|
96 | |
---|
97 | |
---|
98 | </div><!-- /.modal-dialog --> |
---|
99 | <?php |
---|
100 | $this->load->view('layout/admin/footer', array('base_url' => $base_url, 'adminjs' => array('assets/js/admin/report.js'))); |
---|
101 | ?> |
---|