get_all.html
28.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
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>学考无忧-订单管理</title>
<link rel="stylesheet" href="__TMPL__/public/assets/css/mui.min.css"/>
<link rel="stylesheet" href="__TMPL__/public/assets/css/mui.picker.min.css"/>
<link rel="stylesheet" href="__TMPL__/public/assets/css/reset.css"/>
<link rel="stylesheet" href="__TMPL__/public/assets/css/log.css"/>
</head>
<body>
<div class="tx_mask_school">
<div class="tx_maskCon_school">
<div class="three_model_school">
<div class="three_model_school_title">
选择学校-班级
</div>
<div class="three_model_school_tab">
<div class="three_model_school_left three_model_school_hover word">
学校
</div>
<div class="three_model_school_left">
班级
</div>
</div>
<div>
<div class="three_model_school_data there_university" style="display: block;">
<foreach name="$school" item="s">
<div class="three_model_school_name <if condition='$key eq 0'>there_unActive</if> school"
data-id="{$s.id}">{$s.school}
</div>
</foreach>
</div>
<div class="three_model_school_data there_class grade">
</div>
</div>
</div>
</div>
</div>
<!-- 弹窗 -->
<div class="tx_mask">
<div class="tx_maskCon">
<div class="tx_maskConImg">
<img src="__TMPL__/public/assets/images/90.png" alt=""/>
</div>
<div class="tx_maskCon2">
<div class="log_three_model">
<div class="log_three_model_one">
<div class="log_three_model_left">配送时间</div>
<div class="log_psong">
<input type="" name="" id="" value="" placeholder="请输入开始配送时间"/>
</div>
</div>
<div class="log_three_model_one">
<div class="log_three_model_left">配送时间</div>
<div class="log_psong">
<input type="" name="" id="" value="" placeholder="请输入结束配送时间"/>
</div>
</div>
<div class="log_three_model_one" style="padding-bottom: 0;">
<div class="log_three_model_left" style="margin-top: -0.3rem;">单号</div>
<div class="log_three_model_right">
<input type="text" placeholder="请输入快递单号"/>
</div>
</div>
</div>
<!-- 确定 -->
<div class="tx_maskOk">确定</div>
</div>
</div>
</div>
<div class="tx_maskone">
<div class="tx_maskCon">
<div class="tx_maskConImg">
<img src="__TMPL__/public/assets/images/91.png" alt=""/>
</div>
<div class="tx_maskCon2">
<div class="log_three_model">
<div class="log_three_model_one">
<div class="log_three_model_left">配送时间</div>
<div class="log_psong">
<input type="" name="" id="" value="" placeholder="请输入开始配送时间"/>
</div>
</div>
<div class="log_three_model_one">
<div class="log_three_model_left">配送时间</div>
<div class="log_psong">
<input type="" name="" id="" value="" placeholder="请输入结束配送时间"/>
</div>
</div>
</div>
<!-- 确定 -->
<div class="tx_maskOk">确定</div>
</div>
</div>
</div>
<div class="log_top_co">
<!-- 顶部 -->
<div class=" order_top log_top_co">
<a href="">
<img src="__TMPL__/public/assets/images/left.png" alt=""/>
</a>
<p>订单管理</p>
</div>
</div>
<!-- tab切换 -->
<div class="log_three_tab log_three_tab_top">
<div class="log_three_tab_one log_three_tab_two word_color aaa">未发货</div>
<div class="log_three_tab_one">已发货</div>
<div class="log_three_tab_one">已完成</div>
</div>
<!-- 下拉框 -->
<div class="log_three_select">
<div class="log_three_select_one log_three_select_school">
<div class="log_three_select_title log_three_select_school2">
请选择学校/班级
</div>
<div class="log_three_select_img">
<img src="__TMPL__/public/assets/images/75.png" alt=""/>
</div>
</div>
<div class="log_three_select_one log_three_select_peisong">
<div class="log_three_select_title">
统一配送
</div>
<div class="log_three_select_img">
<img src="__TMPL__/public/assets/images/75.png" alt=""/>
</div>
</div>
<div class="log_three_select_one log_three_select_btn search">
搜索
</div>
<input type="hidden" id="school" value=""/>
<input type="hidden" id="grade" value=""/>
</div>
<!-- 列表内容 -->
<div>
<!--未发货-->
<div class="log_three_list_contant" style="display: block;">
<foreach name="$data" item="vo">
<if condition="$vo.state eq 2">
<div class="log_three_list">
<div class="log_three_list_top">
<div class="log_three_list_top_left">
<div class="log_three_list_top_lo">
<img src="__TMPL__/public/assets/images/fangkuang.png" alt=""/>
</div>
<div class="log_three_list_top_lt">
<div class="log_three_zhongbiao">
<img src="__TMPL__/public/assets/images/52.png" alt=""/>
</div>
<div class="log_three_shijian">
{:date('Y-m-d H:i:s',$vo['create_time'])}
</div>
</div>
</div>
<div class="log_three_list_top_right">
<if condition="$vo.state eq 2">
待发货
<elseif condition="$vo.state eq 5"/>
已发货
<elseif condition="$vo.state eq 3"/>
已完成
</if>
</div>
</div>
<foreach name="$vo.indent_goods" item="i_g">
<div class="log_three_list_center">
<div class="log_three_list_center_left">
<img src="{:cmf_get_image_url($i_g.thumbnail)}" alt=""/>
</div>
<div class="log_three_list_center_right">
<div class="log_three_center_one">
{$i_g.book_name}
</div>
<div class="log_three_center_two">×{$i_g.number}</div>
<div class="log_three_center_three"><span>¥</span>{$i_g.price*$i_g.number}</div>
</div>
</div>
</foreach>
<!-- 立即发货 -->
<div class="log_three_bottom_btn">
<if condition="$vo.state eq 2">
<div class="log_three_bottom" data-indent-id="{$vo.id}" data-is_courier="{$vo.is_courier}">
立即发货
</div>
<elseif condition="$vo.state eq 5"/>
<if condition="$vo.is_courier eq 2">
<a href="#">
<div class="log_three_bottom" data-indent-id="{$vo.id}">
查看物流
</div>
</a>
</if>
<elseif condition="$vo.state eq 3"/>
<div class="log_three_bottom" data-indent-id="{$vo.id}">
已完成啦
</div>
</if>
</div>
</div>
</if>
</foreach>
</div>
<!--已发货-->
<div class="log_three_list_contant">
<foreach name="$data" item="vo">
<if condition="$vo.state eq 5">
<div class="log_three_list">
<div class="log_three_list_top">
<div class="log_three_list_top_left">
<div class="log_three_list_top_lo">
<img src="__TMPL__/public/assets/images/fangkuang.png" alt=""/>
</div>
<div class="log_three_list_top_lt">
<div class="log_three_zhongbiao">
<img src="__TMPL__/public/assets/images/52.png" alt=""/>
</div>
<div class="log_three_shijian">
{:date('Y-m-d H:i:s',$vo['create_time'])}
</div>
</div>
</div>
<div class="log_three_list_top_right">
<if condition="$vo.state eq 2">
代发货
<elseif condition="$vo.state eq 5"/>
已发货
<elseif condition="$vo.state eq 3"/>
已完成
</if>
</div>
</div>
<foreach name="$vo.indent_goods" item="i_g">
<div class="log_three_list_center">
<div class="log_three_list_center_left">
<img src="{:cmf_get_image_url($i_g.thumbnail)}" alt=""/>
</div>
<div class="log_three_list_center_right">
<div class="log_three_center_one">
{$i_g.book_name}
</div>
<div class="log_three_center_two">×{$i_g.number}</div>
<div class="log_three_center_three"><span>¥</span>{$i_g.price*$i_g.number}</div>
</div>
</div>
</foreach>
<!-- 立即发货 -->
<div class="log_three_bottom_btn">
<if condition="$vo.state eq 2">
<div class="log_three_bottom" data-indent-id="{$vo.id}" data-is_courier="{$vo.is_courier}">
立即发货
</div>
<elseif condition="$vo.state eq 5"/>
<if condition="$vo.is_courier eq 2">
<div class="log_three_bottom" data-indent-id="{$vo.id}">
查看物流
</div>
</if>
<elseif condition="$vo.state eq 3"/>
<div class="log_three_bottom" data-indent-id="{$vo.id}">
已完成啦
</div>
</if>
</div>
</div>
</if>
</foreach>
</div>
<!--已完成-->
<div class="log_three_list_contant">
<foreach name="$data" item="vo">
<if condition="$vo.state eq 3">
<div class="log_three_list">
<div class="log_three_list_top">
<div class="log_three_list_top_left">
<div class="log_three_list_top_lo">
<img src="__TMPL__/public/assets/images/fangkuang.png" alt=""/>
</div>
<div class="log_three_list_top_lt">
<div class="log_three_zhongbiao">
<img src="__TMPL__/public/assets/images/52.png" alt=""/>
</div>
<div class="log_three_shijian">
{:date('Y-m-d H:i:s',$vo['create_time'])}
</div>
</div>
</div>
<div class="log_three_list_top_right">
<if condition="$vo.state eq 2">
代发货
<elseif condition="$vo.state eq 5"/>
已发货
<elseif condition="$vo.state eq 3"/>
已完成
</if>
</div>
</div>
<foreach name="$vo.indent_goods" item="i_g">
<div class="log_three_list_center">
<div class="log_three_list_center_left">
<img src="{:cmf_get_image_url($i_g.thumbnail)}" alt=""/>
</div>
<div class="log_three_list_center_right">
<div class="log_three_center_one">
{$i_g.book_name}
</div>
<div class="log_three_center_two">×{$i_g.number}</div>
<div class="log_three_center_three"><span>¥</span>{$i_g.price*$i_g.number}</div>
</div>
</div>
</foreach>
<!-- 立即发货 -->
<div class="log_three_bottom_btn">
<if condition="$vo.state eq 2">
<div class="log_three_bottom" data-indent-id="{$vo.id}" data-is_courier="{$vo.is_courier}">
立即发货
</div>
<elseif condition="$vo.state eq 5"/>
<if condition="$vo.is_courier eq 2">
<div class="log_three_bottom" data-indent-id="{$vo.id}">
查看物流
</div>
</if>
<elseif condition="$vo.state eq 3"/>
<div class="log_three_bottom" data-indent-id="{$vo.id}">
已完成啦
</div>
</if>
</div>
</div>
</if>
</foreach>
</div>
</div>
<!-- 底部按钮 -->
<div class="log_three_list_fixed">
<div class="log_three_fixed_left">
<div class="log_three_fixed_left_one">
<img src="__TMPL__/public/assets/images/fangkuang.png" alt=""/>
</div>
<div class="log_three_fixed_left_two">
全选
</div>
</div>
<div class="log_three_fixed_right">
统一发货
</div>
</div>
<script src="__TMPL__/public/assets/js/jquery.js"></script>
<script src="__TMPL__/public/assets/js/base.js"></script>
<script src="__TMPL__/public/assets/js/mui.min.js"></script>
<script src="__TMPL__/public/assets/js/mui.picker.min.js"></script>
<script src="__TMPL__/public/assets/js/city.data-3.js"></script>
<script>
// 选择学校
$(".three_model_school_left").click(function () {
var indexs = $(this).index();
console.log(indexs);
$(".three_model_school_data").eq(indexs).css("display", "block").siblings().css("display", "none");
});
$(".log_three_tab_one").click(function () {
var tabIndex = $(this).index();
$(this).addClass("log_three_tab_two").addClass("word_color").addClass('aaa').siblings().removeClass("log_three_tab_two").removeClass("word_color").removeClass("aaa");
$('.log_three_list_contant').eq(tabIndex).css('display', 'block').siblings().css('display', 'none');
});
$(".three_model_school_tab>div").click(function () {
$(this).addClass("three_model_school_hover").addClass("word_color").addClass('aaa').siblings().removeClass("three_model_school_hover").removeClass("word_color").removeClass("aaa");
});
$(".log_three_list_top_lo").click(function () {
if ($(this).find("img").attr("src") == "__TMPL__/public/assets/images/fangkuang.png") {
$(this).find("img").attr("src", "__TMPL__/public/assets/images/xuanzhong (1).png");
} else {
$(this).find("img").attr("src", "__TMPL__/public/assets/images/fangkuang.png");
}
});
$(".log_three_fixed_left_one").click(function () {
if (
$(this)
.find("img")
.attr("src") == "__TMPL__/public/assets/images/fangkuang.png"
) {
$(this)
.find("img")
.attr("src", "__TMPL__/public/assets/images/xuanzhong (1).png");
$(".log_three_list_top_lo")
.find("img")
.attr("src", "__TMPL__/public/assets/images/xuanzhong (1).png");
} else {
$(this)
.find("img")
.attr("src", "__TMPL__/public/assets/images/fangkuang.png");
$(".log_three_list_top_lo")
.find("img")
.attr("src", "__TMPL__/public/assets/images/fangkuang.png");
}
});
$(".log_three_select_peisong").click(function () {
$(".tx_mask").css({
display: "block"
});
});
var index = $(".log_three_bottom").index();
$(".log_three_bottom").click(function () {
console.log(index);
$(".tx_maskone").css({
display: "block"
});
});
$(".tx_maskOk").click(function () {
$(".tx_maskone").css({
display: "none"
});
$(".tx_mask").css({
display: "none"
});
});
//学校/弹窗
$(".log_three_select_school").click(function () {
$(".tx_mask_school").css({
display: "block"
});
});
// tab 大学
var $xuexiao
$(".there_university div").click(function () {
var index = $(this).index();
$(this).addClass("there_unActive").siblings().removeClass("there_unActive");
if ($(this).hasClass("there_unActive")) {
$xuexiao = $(this).text();
console.log($xuexiao);
$(".there_university").hide();
$(".there_class").show();
$('.three_model_school_left').eq(0).removeClass('word_color').removeClass('three_model_school_hover');
$('.three_model_school_left').eq(1).addClass('word_color').addClass('three_model_school_hover');
}
});
$('body').on('click', ".there_class div", function () {
console.log($xuexiao)
var index2 = $(this).index();
$(this).addClass("there_unActive").siblings().removeClass("there_unActive");
if ($xuexiao == undefined) {
alert('请选择学校')
} else if ($(this).hasClass("there_unActive")) {
var banji = $(this).text();
$('.log_three_select_school2').text($xuexiao + ' ' + "—" + ' ' + banji);
$(".log_three_select_school2").css("color", "#333")
$(".tx_mask_school").hide();
$('#school').val($xuexiao);
$('#grade').val(banji);
}
})
// 关闭弹窗
$(document).mouseup(function (e) {
var _con = $('.tx_maskCon_school');
if (!_con.is(e.target) && _con.has(e.target).length === 0) {
$('.tx_mask_school').hide()
}
})
$(function () {
$('.school').click(function () {
var school_id = $(this).attr('data-id');
$.ajax({
url: "{:url('order_salesman/getGradeClass')}",
type: 'GET',
data: {'school_id': school_id},
success: (function (data) {
if (data.code == 1) {
var result = data.data;
var html = '';
for (var i = 0; i < result.length; i++) {
var i2 = Number(result[i].start);
var j = Number(result[i].end);
for (i2; i2 <= j; i2++) {
// if(i == 0){
// html += "<div class=\"three_model_school_name there_unActive\" data-id=\""+result[i].id+"\">"+result[i].grade+"—"+i2+"</div>";
// }
html += "<div class=\"three_model_school_name\" data-id=\"" + result[i].id + "\">" + result[i].grade + "—" + i2 + "班</div>";
}
}
$('.grade').html(html);
} else {
alert(data.msg);
}
})
})
})
$('.search').click(function () {
var school = $('#school').val();
var grade = $('#grade').val();
if (school == '') {
alert('请选择学校')
} else if (grade == '') {
alert('请选择班级')
} else {
console.log(school);
console.log(grade);
$.ajax({
'url': "{:url('order_salesman/getOrderSalesman')}",
'type': "GET",
'data': {'school': school, 'grade': grade},
'success': (function (data) {
if (data.code == 1) {
var result = data.data;
console.log(result)
var html = '';
for (var i = 0; i < result.length; i++) {
if (result[i]['state'] == 2) {
var state = '待发货';
if (result[i]['is_courier'] == 1) {
var html_bottom = "<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom\" data-indent-id=\"" + result[i].id + "\" data-is_courier=\"" + result[i].is_courier + "\">\n" +
"\t\t\t\t\t\t\t\t\t\t立即发货\n" +
"\t\t\t\t\t\t\t\t\t</div></div>";
} else {
var html_bottom = "<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom\" data-indent-id=\"" + result[i].id + "\" data-is_courier=\"" + result[i].is_courier + "\">\n" +
"\t\t\t\t\t\t\t\t\t\t立即发货\n" +
"\t\t\t\t\t\t\t\t\t</div></div>";
}
} else if (result[i]['state'] == 5) {
var state = '已发货';
var html_bottom = "<a href=\"#\">\n" +
"\t\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_bottom_btn\"><div class=\"log_three_bottom\" data-indent-id=\"" + result[i].id + "\">\n" +
"\t\t\t\t\t\t\t\t\t\t\t\t查看物流\n" +
"\t\t\t\t\t\t\t\t\t\t\t</div></div>\n" +
"\t\t\t\t\t\t\t\t\t\t</a>";
} else {
var state = '已完成';
var html_bottom = "<div class=\"log_three_bottom\" data-indent-id=\"\"+result[i].id+\"\">\n" +
"\t\t\t\t\t\t\t\t\t\t已完成啦\n" +
"\t\t\t\t\t\t\t\t\t</div>";
}
var indent_goods_data = result[i].indent_goods;
var indent_goods_html = '';
for(var i3=0;i3<indent_goods_data.length;i3++){
indent_goods_html += "<div class=\"log_three_list_center\">\n" +
" <div class=\"log_three_list_center_left\">\n" +
" <img src=\"{:cmf_get_image_url('')}"+indent_goods_data[i3].thumbnail+"\" alt=\"\"/>\n" +
" </div>\n" +
" <div class=\"log_three_list_center_right\">\n" +
" <div class=\"log_three_center_one\">\n" +
" "+indent_goods_data[i3].book_name+"\n" +
" </div>\n" +
" <div class=\"log_three_center_two\">×"+indent_goods_data[i3].number+"</div>\n" +
" <div class=\"log_three_center_three\"><span>¥</span>"+indent_goods_data[i3].price*indent_goods_data[i3].number+"</div>\n" +
" </div>\n" +
" </div>";
}
console.log(indent_goods_html);
html += "<div class=\"log_three_list\">\n" +
"\t\t\t\t\t\t\t<div class=\"log_three_list_top\">\n" +
"\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_left\">\n" +
"\t\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_lo\">\n" +
"\t\t\t\t\t\t\t\t\t\t<img src=\"__TMPL__/public/assets/images/fangkuang.png\" alt=\"\" />\n" +
"\t\t\t\t\t\t\t\t\t</div>\n" +
"\t\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_lt\">\n" +
"\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_zhongbiao\">\n" +
"\t\t\t\t\t\t\t\t\t\t\t<img src=\"__TMPL__/public/assets/images/52.png\" alt=\"\" />\n" +
"\t\t\t\t\t\t\t\t\t\t</div>\n" +
"\t\t\t\t\t\t\t\t\t\t<div class=\"log_three_shijian\">\n" +
"\t\t\t\t\t\t\t\t\t\t\t" + result[i].create_time + "\n" +
"\t\t\t\t\t\t\t\t\t\t</div>\n" +
"\t\t\t\t\t\t\t\t\t</div>\n" +
"\t\t\t\t\t\t\t\t</div>\n" +
"\t\t\t\t\t\t\t\t<div class=\"log_three_list_top_right\">\n" +
"\t\t\t\t\t\t\t\t\t\t" + state + "\n" +
"\t\t\t\t\t\t\t\t</div>\n" +
"\t\t\t\t\t\t\t</div>\n" +indent_goods_html+
"\t\t\t\t\t\t</div>"+html_bottom;
}
console.log(html);
var index = $('.log_three_tab_top div').index($('.aaa'));
$('.log_three_list_contant').eq(index).html(html);
} else {
alert('未知错误');
}
}),
'error': (function () {
alert('与服务器断开连接');
})
})
}
})
})
</script>
</body>
</html>