AboutClassApe.js
14.4 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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
//*
// 约课模块
// */
import Loger from "../Loger";
import Ape from "./Ape";
import $ from "jquery";
import ClassDataProxy from "proxy/ClassDataProxy";
import dateUI from 'libs/laydate';
let loger = Loger.getLoger('PC-AboutClassApe');
const adminListTit = `<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" id="t_box" class="t_box">
<tbody>
<tr align="center" height="44" class="tr_center" bgcolor="#fff" bordercolor="#e6e6e6">
<th width="6%" class="tr_center">
姓名
</th>
<th width="7%" class="tr_center">
电话
</th>
<th width="8%" class="tr_center">
年龄
</th>
<th width="7%" class="tr_center">
所约课程
</th>
<th width="9%" class="tr_center">
操作
</th>
</tr>
`;
//管理首页
const adminList = `<tr align="center" bgcolor="#FFFFFF" height="44" bordercolor="#e6e6e6">
<td width="7%" class="tr_main tr_mainLeft">{_userName}</td>
<td width="8%" class="tr_main">{_phone}</td>
<td width="8%" class="tr_main">{_age}</td>
<td width="8%" class="tr_main">{_course}</td>
<td width="10%" class="tr_main tr_mainRight" align="center" >
<a class="classHandlePort" href="javascript:void(0)"> </a>
<a id="{_removeInd}" class="classHandlePort" href="javascript:void(0)">删除</a>
<a class="classHandlePort" href="javascript:void(0)"> </a>
<a id="{_stay}" class="classHandlePort" data="{_aboutMsg}" href="javascript:void(0)">待回访</a>
<a class="classHandlePort" href="javascript:void(0)"> </a>
</td>
</tr>
`;
const adminListEnd = `</tbody></table>`;
const adminListTit1 = `<table width="100%" align="center" cellpadding="0" cellspacing="0" border="0" id="t_box" class="t_box">
<tbody>
<tr align="center" height="44" class="tr_center" bgcolor="#fff" bordercolor="#e6e6e6">
<th width="7%" class="tr_center">
姓名
</th>
<th width="7%" class="tr_center">
电话
</th>
<th width="6%" class="tr_center">
年龄
</th>
<th width="7%" class="tr_center">
约课老师
</th>
<th width="9%" class="tr_center">
操作
</th>
</tr>
`;
//管理首页
const adminList1 = `<tr align="center" bgcolor="#FFFFFF" height="44" bordercolor="#e6e6e6">
<td width="7%" class="tr_main tr_mainLeft">{_userName}</td>
<td width="7%" class="tr_main">{_phone}</td>
<td width="6%" class="tr_main">{_age}</td>
<td width="7%" class="tr_main">{_course}</td>
<td width="9%" class="tr_main tr_mainRight" align="center" >
<a class="classHandlePort1" href="javascript:void(0)"> </a>
<a id="{_removeInd}" class="classHandlePort" href="javascript:void(0)">删除</a>
<a class="classHandlePort1" href="javascript:void(0)"> </a>
</td>
</tr>
`;
class AboutClassApe extends Ape {
constructor() {
super();
this.pageNo = 1;
this.presentInd = 1;
this.addEvent();
this.init();
}
init() {
$('#aboutClassList4 li').on('click',this._userClassListHandler.bind(this));//用户列表
$('#classHandlerHomePage4_0').on('click',this._homePageHandler.bind(this));//首页
$('#classHandlerUpPage4_0').on('click',this._upPageHandler.bind(this));//上页
$('#classHandlerDownPage4_0').on('click',this._downPageHandler.bind(this));//下页
$('#classHandlerEndPage4_0').on('click',this._endPageHandler.bind(this));//尾页
$('#classHandlerSpecificPage4_0').on('click',this._assignPageHandler.bind(this));//指定页
$('#classHandlerHomePage4_1').on('click',this._homePageHandler.bind(this));//首页
$('#classHandlerUpPage4_1').on('click',this._upPageHandler.bind(this));//上页
$('#classHandlerDownPage4_1').on('click',this._downPageHandler.bind(this));//下页
$('#classHandlerEndPage4_1').on('click',this._endPageHandler.bind(this));//尾页
$('#classHandlerSpecificPage4_1').on('click',this._assignPageHandler.bind(this));//指定页
}
addEvent() {
}
//首页
_homePageHandler(){
this.presentInd = 1;
let ind = $('#classHandlerPageBox4').attr('data');
switch (parseInt(ind)){
case 0:
this._manageCourse(this.presentInd);
break;
case 1:
this._manageTeacher(this.presentInd);
break;
default:
return;
}
}
//上页
_upPageHandler(){
if(this.presentInd > 1){
this.presentInd--;
let ind = $('#classHandlerPageBox4').attr('data');
switch (parseInt(ind)){
case 0:
this._manageCourse(this.presentInd);
break;
case 1:
this._manageTeacher(this.presentInd);
break;
default:
return;
}
}
}
//下页
_downPageHandler(){
if(this.presentInd < this.pageNo){
this.presentInd++;
let ind = $('#classHandlerPageBox4').attr('data');
switch (parseInt(ind)){
case 0:
this._manageCourse(this.presentInd);
break;
case 1:
this._manageTeacher(this.presentInd);
break;
default:
return;
}
}
}
//尾页
_endPageHandler(){
this.presentInd = this.pageNo;
let ind = $('#classHandlerPageBox4').attr('data');
switch (parseInt(ind)){
case 0:
this._manageCourse(this.presentInd);
break;
case 1:
this._manageTeacher(this.presentInd);
break;
default:
return;
}
}
//指定页
_assignPageHandler(){
let val;
let ind = $('#classHandlerPageBox4').attr('data');
let card = $('#aboutClassList4 .liveInfoLeftLiCheck').index();
let inputVal = $('#classHandlerPageInfoInput4_'+card).val();
if(parseInt(inputVal) > this.pageNo ){
val = this.pageNo;
}else if(parseInt(inputVal) < 1){
val = 1;
}else{
val = parseInt(inputVal)
}
switch (parseInt(ind)){
case 0:
this._manageCourse(val);
break;
case 1:
this._manageTeacher(val);
break;
default:
return;
}
$('#classHandlerPageInfoInput4_'+card).val('')
}
// 约课界面
aboutClass(){
let ind = $('#aboutClassList4 .liveInfoLeftLiCheck').attr('data');
let card = $('#aboutClassList4 .liveInfoLeftLiCheck').index();
$('#classHandlerPageBox4').attr('data',ind)
let status = parseInt(ind);
$('#classHandlerPageBox4_'+card).show().siblings().hide();
this.presentInd = 1;
switch (status){
case 0:
//课程 列表
this._manageCourse(1);
break;
case 1:
//老师 列表
this._manageTeacher(1);
break;
default:
return;
}
}
//课程 列表
_manageCourse(ind){
let that = this;
this.publicAjax(8,ind,function(_data){
if(_data){
that._coursePage(_data.returnData.data);
that._userCourse(_data.returnData.data);
}
})
}
//老师 列表
_manageTeacher(ind){
let that = this;
this.publicAjax(8,ind,function(_data){
if(_data){
that._teacherPage(_data.returnData.data);
that._teacherCourse(_data.returnData.data);
}
})
}
_userCourse(_data){
let courseContent = $('#courseContent4');
courseContent.empty();
if(_data){
courseContent.append(adminListTit);
let _dataList = _data.studentMeeting;
for(let i =0;i<_dataList.length;i++){
let item = _dataList[i];
if(item){
let _adminList = this._format(adminList,{
_userName : item.user_name,
_phone : item.user_mobile,
_age : '女',
_totalNmu : '2',
_course : item.meeting_name,
_removeInd : 'classDoc'+i,
_stay : 'classMedia'+i,
_aboutMsg : item.id
})
courseContent.append(_adminList);
}
courseContent.append(adminListEnd);
}
}else{
this._gainUserClassDataErr();
}
}
_teacherCourse(_data){
let courseContent = $('#courseContent4');
courseContent.empty();
if(_data){
let _dataList = _data.studentMeeting;
courseContent.append(adminListTit1);
for(let i =0;i<_dataList.length;i++){
let item = _dataList[i];
if(item){
let _adminList = this._format(adminList1,{
_userName : item.user_name,
_phone : item.user_mobile,
_age : '女',
_totalNmu : '2',
_course : item.teacherName,
_removeInd : 'classDoc'+i,
_stay : 'classMedia'+i,
_aboutMsg : item.id
})
courseContent.append(_adminList);
}
courseContent.append(adminListEnd);
}
}else{
this._gainUserClassDataErr();
}
}
_coursePage(_data){
if(_data){
let count = _data.count;
let page = _data.page;
let pageno = _data.pageno;
let pagenum = Math.ceil(count / pageno);
this.pageNo = pagenum;
$('#classHandlerPageMsg4_0').html('第'+page+'页/共'+pagenum+'页,有'+count+'个记录');
if(count <=4){
$('#classHandlerPageBox4_0').hide();
}
}
}
_teacherPage(_data){
if(_data){
let count = _data.count;
let page = _data.page;
let pageno = _data.pageno;
let pagenum = Math.ceil(count / pageno);
let _dataList = _data.meetingInfo;
this.pageNo = pagenum;
$('#classHandlerPageMsg4_1').html('第'+page+'页/共'+pagenum+'页,有'+count+'个记录');
if(count <=4){
$('#classHandlerPageBox4_1').hide();
}
}
}
_gainUserClassDataErr(){
let courseContent = $('#courseContent4');
courseContent.empty();
courseContent.append(adminListTit);
let _adminList = '<tr align="center" bgcolor="#FFFFFF" height="44" bordercolor="#e6e6e6">' +
'<td class="tr_main tr_mainNone">' +
'该课堂暂无约课数据~'+
'</td>>'+
'</tr>'
courseContent.append(_adminList);
courseContent.append(adminListEnd);
}
publicAjax(num,ind,callback){
if(ClassDataProxy.id == ''){
return;
}
let _url = ClassDataProxy.locationProtocol + ClassDataProxy.locationProt + '/studentMeeting/getStudentMeetingBySite/'+ClassDataProxy.siteId;
let that = this;
$.ajax({
type: "GET",
url: _url,
timeout:5000,
headers: {siteId:ClassDataProxy.siteId,pageno:num,page:ind,id:ClassDataProxy.id,
'token':ClassDataProxy.token},
success:function(_data){
// loger.log('预约信息斯柯达开始',_data)
//获取我的课程数据
if(_data && _data.code == 200){
if(callback){
callback(_data);
}
}else{
if(callback){
callback(null);
}
}
},
error:function(error){
//alert('直播数据获取失败')
if(callback){
callback(null);
}
loger.log(error,'直播数据获取失败')
}
})
}
_switchover(evt){
$(evt.currentTarget).addClass('liveInfoLeftLiCheck').siblings().removeClass('liveInfoLeftLiCheck');
}
_userClassListHandler(evt){
this._switchover(evt);
this.aboutClass();
}
//工具类
_format(str, obj) {
return str.replace(/\{(\w+)\}/g, function (match, group, index) {
return obj[group];
});
};
}
export default AboutClassApe;