| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <!DOCTYPE html>
- <html>
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <c:set var="ctxPath" value="${pageContext.request.contextPath}" />
- <!-- context path -->
- <!-- update-begin--Author:xuelin Date:20170428 for:#1755 【美化】用户分析报表,多tab格式,是否可以美化 需要改底层-------------------- -->
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <head>
- <meta charset="utf-8">
- <title>美都环卫微管理</title>
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <!--标准mui.css-->
- <link rel="stylesheet" href="plug-in/mui/css/mui.min.css">
- <!--App自定义的css-->
- <link rel="stylesheet" type="text/css" href="plug-in/mui/css/app.css"/>
- <style>
- .mui-table h4,.mui-table h5,.mui-table .mui-h5,.mui-table .mui-h6,.mui-table p{
- margin-top: 0;
- }
- .mui-table h4{
- line-height: 21px;
- font-weight: 500;
- }
-
- .mui-table .oa-icon{
- position: absolute;
- right:0;
- bottom: 0;
- }
- .mui-table .oa-icon-star-filled{
- color:#f14e41;
- }
- .divtitle{
- margin: 20px 15px 7px;
- color: red;
- font-size: 15px;
- }
- .mui-popup{position: fixed;}
- .detailTableName{
- font-size:16px;
- text-align:"left";
- padding-top: 2px;
- padding-bottom: 2px;
- }
- .detailTableValue{
- font-size:16px;
- }
- .mui-popup {
- text-align: right;
- }
- </style>
- </head>
- <body>
- <header class="mui-bar mui-bar-nav">
- <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
- <h1 class="mui-title">${title }</h1>
- </header>
- <div class="mui-content">
- <ul id="mui-table-view" class="mui-table-view mui-table-view-striped mui-table-view-condensed">
- </ul>
- </div>
- </body>
- <script src="plug-in/mui/mui.min.js"></script>
- <script src = "plug-in/stats/statscommon.js"></script>
- <script src = "webpage/cn/com/lzt/wxviewer/wxMultirowViewer.js"></script>
- <c:if test='${not empty defindedJS}'>
- <script src = "${defindedJS}"></script>
- </c:if>
- <script>
- mui.init({
- swipeBack:true //启用右滑关闭功能
- });
- $(function() {
- $(document).ready(function() {
- attendanceStatssearch();
- });
-
- });
- function attendanceStatssearch(){
- var url = '${htmlurl}';
- handleAjaxSimple(url, "", handleSuccess);
- }
- function handleSuccess(data){
- document.getElementById("mui-table-view").innerHTML=data.obj;
-
- }
-
- function getHeight(className) {
- var height = $(className).height();
- return height;
- }
- function setLineHeight(className) {
- var height = getHeight(className) + "px";
- $(className).css("line-height",height);
- }
- </script>
- </html>
|