wdyw.js
10.5 KB
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
layui.use('element', function () {
let element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块
//监听导航点击
element.on('nav(demo)', function (elem) {
layer.msg(elem.text());
});
$('.arrowList p').css("opacity", 0);
$('.arrowList p').eq(0).css("opacity", 1);
});
$(function () {
_applyBusinessRecord()
_applyBusinessAJZTCount()
$('.business_titleList li a').click(function () {
let dataId = ($(this).attr('data-id'))
$('.arrowList p').css("opacity", 0);
$('.arrowList p').eq(dataId).css("opacity", 1);
$('.business_titleList li a').removeClass('bus-active');
$('.business_titleList li').eq(dataId).find('a').addClass('bus-active')
if (dataId == '0') {
_applyBusinessRecord()
dataRendering(dataList.list)
} else if (dataId == '1') {
_applyBusinessWiat()
dataRendering(dataList.list)
} else if (dataId == '2') {
_applyBusinessIn()
dataRendering(dataList.list)
} else if (dataId == '3') {
_applyBusinessEnd()
dataRendering(dataList.list)
}
})
$(function() {
$('#hellotime').text(getTimeState())
})
$(document).on("click", ".appintmentList li .handle", function () {
let businessNo = $(this).attr('data-businessNo');
let slsqBsm = $(this).attr('data-slsqBsm');
let title = $(this).attr('data-title');
getWorkBoxFLow(slsqBsm, businessNo, title)
})
// 业务列表操作
$(document).on("click", ".delete", function () {
let slsqBsm = $(this).attr('slsqBsm')
layui.use('layer', function () {
var layer = layui.layer;
layer.confirm('此操作将删除业务是否继续?', {
scrollbar: false,
btn: ['是', '否'] //按钮
}, function () {
_listDel(slsqBsm)
}, function () {
layer.closeAll();
});
});
})
$('#zjhm').text(getItem('myCookie').zjhm)
$('#username').text(getItem('myCookie').username )
})
// 列表操作
function _listDel(slsqBsm) {
$.ajax({
type: "delete", //提交方式
url: portal.api_url + "/portal/FillInformation/deleteSlsqBybsmSlsq?bsmSlsq="+slsqBsm,//路径
dataType: "json",
//数据,这里使用的是Json格式进行传输
success: function (result) {//返回数据根据结果进行相应的处理
if (result.code == 200) {
layer.msg('操作成功!');
_applyBusinessAJZTCount()
_applyBusinessRecord()
dataRendering(dataList.list)
}
}
});
}
//网上申请业务待提交
function _applyBusinessWiat(currentPage = 1) {
var li;
$.ajax({
type: "post", //提交方式
url: portal.api_url + "/portal/WorkBoxService/applyBusinessWait",//路径
dataType: "json",
data: {
"userId": getItem('myCookie').userid,
"currentPage": currentPage,
"pageSize": 10
},
//数据,这里使用的是Json格式进行传输
success: function (result) {//返回数据根据结果进行相应的处理
$('.appintmentListItem').empty();
if (result.code == 200 && result.data != null) {
dataList.list = result.data.records
dataRendering()
}
paged(result.data.total);
}
});
}
//网上申请业务正在办理
function _applyBusinessIn(currentPage = 1) {
var li;
$.ajax({
type: "post", //提交方式
url: portal.api_url + "/portal/WorkBoxService/applyBusinessIn",//路径
dataType: "json",
data: {
"userId": getItem('myCookie').userid,
"currentPage": currentPage,
"pageSize": 10
},
//数据,这里使用的是Json格式进行传输
success: function (result) {//返回数据根据结果进行相应的处理
$('.appintmentListItem').empty();
if (result.code == 200 && result.data != null) {
dataList.list = result.data.records
dataRendering()
}
paged(result.data.total);
}
});
}
//网上申请业务已办结
function _applyBusinessEnd(currentPage = 1) {
var li;
$.ajax({
type: "post", //提交方式
url: portal.api_url + "/portal/WorkBoxService/applyBusinessEnd",//路径
dataType: "json",
data: {
"userId": getItem('myCookie').userid,
"currentPage": currentPage,
"pageSize": 10
},
//数据,这里使用的是Json格式进行传输
success: function (result) {//返回数据根据结果进行相应的处理
$('.appintmentListItem').empty();
if (result.code == 200 && result.data != null) {
dataList.list = result.data.records
dataRendering()
}
paged(result.data.total);
}
});
}
//网上申请业务记录
function _applyBusinessRecord(currentPage = 1) {
var li;
$.ajax({
type: "post", //提交方式
url: portal.api_url + "/portal/WorkBoxService/applyBusinessRecord",//路径
dataType: "json",
data: {
"userId": getItem('myCookie').userid,
"currentPage": currentPage,
"pageSize": 10
},
//数据,这里使用的是Json格式进行传输
success: function (result) {//返回数据根据结果进行相应的处理
$('.appintmentListItem').empty();
if (result.code == 200 && result.data != null) {
dataList.list = result.data.records
dataRendering()
}
paged(result.data.total, result.data.current);
}
});
}
// 网上申请业务案件状态数量统计
function _applyBusinessAJZTCount() {
$.ajax({
type: "get", //提交方式
url: portal.api_url + "/portal/WorkBoxService/applyBusinessAJZTCount?userId=" + dataList.userid,//路径
dataType: "json",
//数据,这里使用的是Json格式进行传输
success: function (result) {//返回数据根据结果进行相应的处理
$('.applyBusinessRecord span').text(result.data.allBusinessCount)
$('.to_be_submitted span').text(result.data.businessWaitCount)
$('.applyBusinessIn span').text(result.data.businessInProcessCount)
$('.applyBusinessEnd span').text(result.data.businessEndCount)
}
});
}
// 分页
function paged(pageCount, curr) {
layui.use('laypage', function () {
let laypage = layui.laypage;
//执行一个laypage实例
laypage.render({
elem: 'page' //注意,这里的 test1 是 ID,不用加 # 号
, count: pageCount //数据总数,从服务端得到
, curr: curr
, prev: '<'
, next: '>'
, theme: '#0091FF'
, jump: function (obj, first) {
if (!first) {
_applyBusinessRecord(obj.curr);
}
}
});
})
if (pageCount == 0) {
$('#page').hide();
$('.noData').show();
}else {
$('#page').show();
$('.noData').hide();
}
}
// 列表数据渲染
function dataRendering() {
for (var i = 0; i < dataList.list.length; i++) {
li = '<li data-slsqBsm="' + dataList.list[i].slsqBsm + '" data-businessNo="' + dataList.list[i].businessNo + '">';
if (dataList.list[i].ajzt == '1') {
li += '<span class="state tobeSubmit">办理中</span>'
} else if (dataList.list[i].ajzt == '2') {
li += '<span class="state dataReview">资料审核</span>'
} else if (dataList.list[i].ajzt == '3') {
li += '<span class="state pay">待缴费</span>'
} else if (dataList.list[i].ajzt == '4') {
li += '<span class="state return">退回</span>'
} else if (dataList.list[i].ajzt == '5') {
li += '<span class="state reject">驳回</span>'
} else {
li += '<span class="state success">办理成功</span>'
}
li += ' <div class="business_name">'
li += '<h5>' + dataList.list[i].djywjc + '</h5>'
li += '<p>权利类型:' + dataList.list[i].qllxmc + '</p>'
li += '</div>'
li += '<div class="obligee">'
li += '<p>权利人</p>'
if (dataList.list[i].qlrmc!='') {
li += '<p>' + dataList.list[i].qlrmc + '</p>'
}else {
li += '<p>-----</p>'
}
li += '</div>'
li += '<div class="obligee">'
li += '<p>义务人</p>'
if (dataList.list[i].ywrmc!='') {
li += '<p>' + dataList.list[i].ywrmc + '</p>'
}else {
li += '<p>-----</p>'
}
li += '</div>'
li += '<div>'
li += '<p>办理流水</p>'
li += '<p>' + dataList.list[i].wwsqbh + '</p>'
li += '</div>'
li += '<div>'
li += '<p>办理时间</p>'
li += '<p>' + dataList.list[i].sqrq + '</p>'
li += '</div>'
li += '<a slsqBsm="'+dataList.list[i].slsqBsm+'" class="delete">删除</a>'
if (dataList.list[i].ajzt == '1') {
li += '<a class="handle" data-slsqBsm="' + dataList.list[i].slsqBsm + '"data-businessNo="' + dataList.list[i].businessNo + '" data-title="我的业务">继续办理</a>'
} else if (dataList.list[i].ajzt == '3') {
li += '<a slsqBsm="'+dataList.list[i].slsqBsm+'" class="handle">缴费</a>'
}else if (dataList.list[i].ajzt == '4' || dataList.list[i].ajzt == '5' || dataList.list[i].ajzt == '6') {
li += '<a class="completed">已办结</a>'
}
$('.appintmentListItem').append(li)
}
}
function getTimeState(){
// 获取当前时间
let timeNow = new Date();
// 获取当前小时
let hours = timeNow.getHours();
// 设置默认文字
let text = '';
// 判断当前时间段
if (hours >= 0 && hours <= 10) {
text = '早上好:';
} else if (hours > 10 && hours <= 14) {
text = '中午好:';
} else if (hours > 14 && hours <= 18) {
text = '下午好:';
} else if (hours > 18 && hours <= 24) {
text = `晚上好:`;
}
// 返回当前时间段对应的状态
return text;
};
var dataList = {
"list": [],
"userid": getItem('myCookie').userid
};