|
@@ -38,6 +38,24 @@ |
|
@@ -38,6 +38,24 @@ |
38
|
.log_six_select_one span,.log_two_input_title span,.log_two_picture_title span{
|
38
|
.log_six_select_one span,.log_two_input_title span,.log_two_picture_title span{
|
39
|
color: #F20000;
|
39
|
color: #F20000;
|
40
|
}
|
40
|
}
|
|
|
41
|
+ .mui-poppicker-header,
|
|
|
42
|
+ .mui-picker {
|
|
|
43
|
+ background-color: white;
|
|
|
44
|
+ }
|
|
|
45
|
+
|
|
|
46
|
+ .mui-btn-blue,
|
|
|
47
|
+ .mui-btn-primary,
|
|
|
48
|
+ input[type=submit] {
|
|
|
49
|
+ background-color: #FF7700;
|
|
|
50
|
+ border: 0;
|
|
|
51
|
+ }
|
|
|
52
|
+
|
|
|
53
|
+ .mui-pciker-list li.highlight {
|
|
|
54
|
+ color: #FF7700;
|
|
|
55
|
+ }
|
|
|
56
|
+ .mui-dtpicker-header,.mui-dtpicker-title h5{
|
|
|
57
|
+ background-color: white;
|
|
|
58
|
+ }
|
41
|
</style>
|
59
|
</style>
|
42
|
</head>
|
60
|
</head>
|
43
|
|
61
|
|
|
@@ -302,6 +320,37 @@ |
|
@@ -302,6 +320,37 @@ |
302
|
<script src="__TMPL__/public/assets/js/uploadfile.js"></script>
|
320
|
<script src="__TMPL__/public/assets/js/uploadfile.js"></script>
|
303
|
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
|
321
|
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
|
304
|
<script>
|
322
|
<script>
|
|
|
323
|
+ var schoolpicker = new mui.PopPicker();
|
|
|
324
|
+ (function($, doc) {
|
|
|
325
|
+ $.init();
|
|
|
326
|
+ $.ready(function() {
|
|
|
327
|
+ schoolpicker.setData([{
|
|
|
328
|
+ text: '一年级'
|
|
|
329
|
+ },{
|
|
|
330
|
+ text: '二年级'
|
|
|
331
|
+ },{
|
|
|
332
|
+ text: '三年级'
|
|
|
333
|
+ },{
|
|
|
334
|
+ text: '四年级'
|
|
|
335
|
+ },{
|
|
|
336
|
+ text: '五年级'
|
|
|
337
|
+ },{
|
|
|
338
|
+ text: '六年级'
|
|
|
339
|
+ },]);
|
|
|
340
|
+ });
|
|
|
341
|
+ })(mui, document);
|
|
|
342
|
+ $(".log_six_select_nianji").click(function() {
|
|
|
343
|
+ schoolpicker.show(function(e) {
|
|
|
344
|
+ school_name = e[0].value;
|
|
|
345
|
+ school_names = e[0].text;
|
|
|
346
|
+ $(".log_six_nianji_contant").text(e[0].text);
|
|
|
347
|
+ $('.log_six_nianji_contant').css('color', '#333333');
|
|
|
348
|
+
|
|
|
349
|
+ });
|
|
|
350
|
+
|
|
|
351
|
+ })
|
|
|
352
|
+</script>
|
|
|
353
|
+<script>
|
305
|
|
354
|
|
306
|
$('#openCamera').click(function(){
|
355
|
$('#openCamera').click(function(){
|
307
|
|
356
|
|
|
@@ -550,23 +599,23 @@ |
|
@@ -550,23 +599,23 @@ |
550
|
<script>
|
599
|
<script>
|
551
|
|
600
|
|
552
|
//选择年级
|
601
|
//选择年级
|
553
|
- $(".log_six_select_nianji").click(function(){
|
|
|
554
|
- $(".tx_mask_tongyi").css({
|
|
|
555
|
- display: "block"
|
|
|
556
|
- });
|
|
|
557
|
- })
|
|
|
558
|
- $(".tx_mask_tongyi .three_model_school_name").click(function(){
|
|
|
559
|
- var index = $(this).index();
|
|
|
560
|
- $('.log_six_nianji_contant').text($(this).text()).css("color", "#333");
|
|
|
561
|
- $(".tx_mask_tongyi").hide();
|
|
|
562
|
- })
|
602
|
+// $(".log_six_select_nianji").click(function(){
|
|
|
603
|
+// $(".tx_mask_tongyi").css({
|
|
|
604
|
+// display: "block"
|
|
|
605
|
+// });
|
|
|
606
|
+// })
|
|
|
607
|
+// $(".tx_mask_tongyi .three_model_school_name").click(function(){
|
|
|
608
|
+// var index = $(this).index();
|
|
|
609
|
+// $('.log_six_nianji_contant').text($(this).text()).css("color", "#333");
|
|
|
610
|
+// $(".tx_mask_tongyi").hide();
|
|
|
611
|
+// })
|
563
|
//取消弹窗
|
612
|
//取消弹窗
|
564
|
- $(document).mouseup(function(e) {
|
|
|
565
|
- var _con = $('.tx_maskCon_school');
|
|
|
566
|
- if(!_con.is(e.target) && _con.has(e.target).length === 0) {
|
|
|
567
|
- $('.tx_mask_tongyi').hide()
|
|
|
568
|
- }
|
|
|
569
|
- })
|
613
|
+// $(document).mouseup(function(e) {
|
|
|
614
|
+// var _con = $('.tx_maskCon_school');
|
|
|
615
|
+// if(!_con.is(e.target) && _con.has(e.target).length === 0) {
|
|
|
616
|
+// $('.tx_mask_tongyi').hide()
|
|
|
617
|
+// }
|
|
|
618
|
+// })
|
570
|
//上传图片
|
619
|
//上传图片
|
571
|
|
620
|
|
572
|
/* $(function() {
|
621
|
/* $(function() {
|