liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!doctype html>
<html>
 
    <head>
        <meta charset="UTF-8">
        <title></title>
        <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
        <link href="css/mui.min.css" rel="stylesheet" />
        <!--<link rel="stylesheet" href="iconfont1/ux_1477043614_6636171/iconfont.css" />-->
        <style>
 
                    .title{
                        height:50px;
                        font-family: "微软雅黑";
                        font-size: 16px;
                        line-height: 50px;
                        background-color: #333333;
                        color: #ffffff;
                        
                    }
 
                     .title span{
                         float: right;
                     }
                     .submit{}
                     .approval{}
                     .refuse{}
                     .work{}
            span{
                margin-right:30px;
            }
            .mui-table-view .title p img{
                height:30px;
                width:30px;
                vertical-align:middle;
            }
        </style>
    </head>
 
    <body>
        <!--下拉刷新容器-->
        <div id="pullrefresh" class="mui-content mui-scroll-wrapper">
            <div class="mui-scroll">
                <!--数据列表-->
                <ul class="mui-table-view mui-table-view-chevron submit">
                        <li class="title">
                            <p>&nbsp;<img src="images/1.png" alt="" />&nbsp;&nbsp;&nbsp;检查-待提交</p>
 
                        </li>
                </ul>
                <ul class="mui-table-view mui-table-view-chevron approval">
                        <li class="title">
                                <p>&nbsp;<img src="images/2.png" alt="" />&nbsp;&nbsp;&nbsp;检查-待审批</p>
 
                        </li>
                </ul>
                <ul class="mui-table-view mui-table-view-chevron refuse">
                        <li class="title">
                            <p>&nbsp;<img src="images/3.png" alt="" />&nbsp;&nbsp;&nbsp;检查-被驳回</p>
 
                        </li>
                </ul>
                <ul class="mui-table-view mui-table-view-chevron work">
                        <li class="title">
                            <p>&nbsp;<img src="images/4.png" alt="" />&nbsp;&nbsp;&nbsp;检查-工作流</p>
 
                        </li>
                </ul>
            </div>
        </div>
        <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
        <script src="js/mui.min.js"></script>
        <script src="js/common.js" ></script>
        <script type="text/javascript">
//        if(sessionCache.getSessionCashe("userToken") == null){
//            location.href="login.html";
//        }
        mui_.init({
            load:true,
            pull:true,
            callback:function(){
 
                var school = sessionCache.getSessionCashe("organizationTree",sessionCache.json_value);
                var schoolId="";
                mui.each(school,function(index,entity){
                    schoolId =schoolId + ","+entity.id;
                });
                var posts = sessionCache.getSessionCashe("userPosts",sessionCache.json_value);
                var postsId="";
                mui.each(posts,function(index,entity1){
                    postsId =postsId + ","+entity1.id;
                });
 
                mui.ajax(
                     serverUrl+"/auth/panel/notice/findWaitCount.json", {
                            data: JSON.stringify({
                                "categoryId":"",//类型ID,现在没用。
                                "page": 0,
                                "size": 6,
                                "schoolId": "1",//学校ID,可能会有多个,多个以逗号隔开 $localStorage.CurrentUserData.orgIds
                                "posts": "",//职务ID,可能会有多个,多个以逗号隔开var posts = _.map($localStorage.CurrentUserData.posts,function (item) {return item.id});
                                "modelSource": "0"//模块类型,是工作流的参数,现在没用,默认是0就行了。
                            }),
                            dataType: 'json',
                            async: false,
                            type: 'post', //HTTP请求类型
                            headers: {
                                'Content-Type': 'application/json',
                                'Authorization': sessionCache.getSessionCashe("userToken")
                            },
                            success: function (data) {
                                if (data.code == 000) {
//                                    mui_.loadMui.count = data.data[0].length;
 
                                    var span ="<span>共【"+data.data[0].count+"】项&nbsp;</span>";
                                    //下拉刷新,新纪录插到最前面;
                                    $('.submit li p').prepend(span);
 
                                        var dateStr = new Date();
                                        $(".submit li").bind("tap",  function () {
//                                            alert("hahaha");
                                            mui.openWindow({
                                                id: 'task_waitsubmit',
                                                url: 'task_waitsubmit.html'
                                            });
                                    });
 
                                }
                            },
                            error:function(xhr,type,errorThrown){
                                //异常处理;
                                console.log(type);
                            }
 
                        });
 
                mui.ajax(
                        serverUrl+"/auth/panel/notice/findWaitCount.json", {
                            data: JSON.stringify({
                                "categoryId":"", //类型ID,现在没用。
                                "page": 0,
                                "size": 6,
                                "schoolId": "1",//学校ID,可能会有多个,多个以逗号隔开 $localStorage.CurrentUserData.orgIds
                                "posts": "",//职务ID,可能会有多个,多个以逗号隔开var posts = _.map($localStorage.CurrentUserData.posts,function (item) {return item.id});
                                "modelSource": "0"//模块类型,是工作流的参数,现在没用,默认是0就行了。
                            }),
                            dataType: 'json',
                            async: false,
                            type: 'post', //HTTP请求类型
                            headers: {
                                'Content-Type': 'application/json',
                                'Authorization': sessionCache.getSessionCashe("userToken")
                            },
                            success: function (data) {
                                if (data.code == 000) {
//                                    mui_.loadMui.count = data.data[1].length;
//                                    mui.each(data.data[1], function (index, entity) {
//                                        var dateStr = new Date();
//
//                                        var span = jQuery("<span>共【"+entity.count+"】项&nbsp;</span>")
//                                        $(span).bind("tap", function () {
//                                            mui.openWindow({
//                                                id: 'task_approval',
//                                                url: 'task_approval.html'
//                                            });
//                                        });
//                                        //下拉刷新,新纪录插到最前面;
//                                        $('.approval li i').prepend(span);
//                                    });
                                    var span ="<span>共【"+data.data[1].count+"】项&nbsp;</span>";
                                    $('.approval li p').prepend(span);
                                    $(".approval li").bind("tap",  function () {
//                                        alert("hahaha");
                                        mui.openWindow({
                                            id: 'task_approval',
                                            url: 'task_approval.html'
                                        });
                                    });
                                }
                            }
                        });
                mui.ajax(
                        serverUrl+"/auth/panel/notice/findWaitCount.json", {
                            data: JSON.stringify({
                                "categoryId":"", //类型ID,现在没用。
                                "page": 0,
                                "size": 6,
                                "schoolId": "1",//学校ID,可能会有多个,多个以逗号隔开 $localStorage.CurrentUserData.orgIds
                                "posts": "",//职务ID,可能会有多个,多个以逗号隔开var posts = _.map($localStorage.CurrentUserData.posts,function (item) {return item.id});
                                "modelSource": "0"//模块类型,是工作流的参数,现在没用,默认是0就行了。
                            }),
                            dataType: 'json',
                            async: false,
                            type: 'post', //HTTP请求类型
                            headers: {
                                'Content-Type': 'application/json',
                                'Authorization': sessionCache.getSessionCashe("userToken")
                            },
                            success: function (data) {
                                if (data.code == 000) {
//                                    mui_.loadMui.count = data.data[2].length;
//                                    mui.each(data.data[2], function (index, entity) {
//                                        var dateStr = new Date();
//
//                                        var span = jQuery("<span>共【"+entity.count+"】项&nbsp;</span>")
//                                        $(span).bind("tap", function () {
//                                            mui.openWindow({
//                                                id: 'task_refuse',
//                                                url: 'task_refuse.html'
//                                            });
//                                        });
//                                        //下拉刷新,新纪录插到最前面;
//                                        $('.refuse li i').prepend(span);
//                                    });
                                    var span ="<span>共【"+data.data[2].count+"】项&nbsp;</span>";
                                    $('.refuse li p').prepend(span);
                                    $(".refuse li").bind("tap",function () {
                                        mui.openWindow({
                                            id: 'task_refuse',
                                            url: 'task_refuse.html'
                                        });
                                    });
                                }
                            }
                        });
                mui.ajax(
                        serverUrl+"/auth/panel/notice/findWaitCount.json", {
                            data: JSON.stringify({
                                "categoryId":"",//类型ID,现在没用。
                                "page": 0,
                                "size": 6,
                                "schoolId": "1",//学校ID,可能会有多个,多个以逗号隔开 $localStorage.CurrentUserData.orgIds
                                "posts": "",//职务ID,可能会有多个,多个以逗号隔开var posts = _.map($localStorage.CurrentUserData.posts,function (item) {return item.id});
                                "modelSource": "0"//模块类型,是工作流的参数,现在没用,默认是0就行了。
                            }),
                            dataType: 'json',
                            async: false,
                            type: 'post', //HTTP请求类型
                            headers: {
                                'Content-Type': 'application/json',
                                'Authorization': sessionCache.getSessionCashe("userToken")
                            },
                            success: function (data) {
                                if (data.code == 000) {
//                                    mui_.loadMui.count = data.data[3].length;
//                                    mui.each(data.data[3], function (index, entity) {
//                                        var dateStr = new Date();
//
//                                        var span = jQuery("<span>共【"+entity.count+"】项&nbsp;</span>")
//                                        $(span).bind("tap", function () {
//                                            mui.openWindow({
//                                                id: 'task_work',
//                                                url: 'task_work.html'
//                                            });
//                                        });
//                                        //下拉刷新,新纪录插到最前面;
//                                        $('.work li i').prepend(span);
//                                    });
 
                                    var span ="<span>共【"+data.data[3].count+"】项&nbsp;</span>";
                                    $('.work li p').prepend(span);
                                    $(".work li").bind("tap",  function () {
                                        mui.openWindow({
                                            id: 'task_work',
                                            url: 'task_work.html'
                                        });
                                    });
                                }
                            }
                        });
            }
        });
        </script>
    </body>
 
</html>