...
|
...
|
@@ -38,6 +38,24 @@ |
|
|
.log_six_select_one span,.log_two_input_title span,.log_two_picture_title span{
|
|
|
color: #F20000;
|
|
|
}
|
|
|
.mui-poppicker-header,
|
|
|
.mui-picker {
|
|
|
background-color: white;
|
|
|
}
|
|
|
|
|
|
.mui-btn-blue,
|
|
|
.mui-btn-primary,
|
|
|
input[type=submit] {
|
|
|
background-color: #FF7700;
|
|
|
border: 0;
|
|
|
}
|
|
|
|
|
|
.mui-pciker-list li.highlight {
|
|
|
color: #FF7700;
|
|
|
}
|
|
|
.mui-dtpicker-header,.mui-dtpicker-title h5{
|
|
|
background-color: white;
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
|
...
|
...
|
@@ -302,6 +320,37 @@ |
|
|
<script src="__TMPL__/public/assets/js/uploadfile.js"></script>
|
|
|
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
|
|
|
<script>
|
|
|
var schoolpicker = new mui.PopPicker();
|
|
|
(function($, doc) {
|
|
|
$.init();
|
|
|
$.ready(function() {
|
|
|
schoolpicker.setData([{
|
|
|
text: '一年级'
|
|
|
},{
|
|
|
text: '二年级'
|
|
|
},{
|
|
|
text: '三年级'
|
|
|
},{
|
|
|
text: '四年级'
|
|
|
},{
|
|
|
text: '五年级'
|
|
|
},{
|
|
|
text: '六年级'
|
|
|
},]);
|
|
|
});
|
|
|
})(mui, document);
|
|
|
$(".log_six_select_nianji").click(function() {
|
|
|
schoolpicker.show(function(e) {
|
|
|
school_name = e[0].value;
|
|
|
school_names = e[0].text;
|
|
|
$(".log_six_nianji_contant").text(e[0].text);
|
|
|
$('.log_six_nianji_contant').css('color', '#333333');
|
|
|
|
|
|
});
|
|
|
|
|
|
})
|
|
|
</script>
|
|
|
<script>
|
|
|
|
|
|
$('#openCamera').click(function(){
|
|
|
|
...
|
...
|
@@ -550,23 +599,23 @@ |
|
|
<script>
|
|
|
|
|
|
//选择年级
|
|
|
$(".log_six_select_nianji").click(function(){
|
|
|
$(".tx_mask_tongyi").css({
|
|
|
display: "block"
|
|
|
});
|
|
|
})
|
|
|
$(".tx_mask_tongyi .three_model_school_name").click(function(){
|
|
|
var index = $(this).index();
|
|
|
$('.log_six_nianji_contant').text($(this).text()).css("color", "#333");
|
|
|
$(".tx_mask_tongyi").hide();
|
|
|
})
|
|
|
// $(".log_six_select_nianji").click(function(){
|
|
|
// $(".tx_mask_tongyi").css({
|
|
|
// display: "block"
|
|
|
// });
|
|
|
// })
|
|
|
// $(".tx_mask_tongyi .three_model_school_name").click(function(){
|
|
|
// var index = $(this).index();
|
|
|
// $('.log_six_nianji_contant').text($(this).text()).css("color", "#333");
|
|
|
// $(".tx_mask_tongyi").hide();
|
|
|
// })
|
|
|
//取消弹窗
|
|
|
$(document).mouseup(function(e) {
|
|
|
var _con = $('.tx_maskCon_school');
|
|
|
if(!_con.is(e.target) && _con.has(e.target).length === 0) {
|
|
|
$('.tx_mask_tongyi').hide()
|
|
|
}
|
|
|
})
|
|
|
// $(document).mouseup(function(e) {
|
|
|
// var _con = $('.tx_maskCon_school');
|
|
|
// if(!_con.is(e.target) && _con.has(e.target).length === 0) {
|
|
|
// $('.tx_mask_tongyi').hide()
|
|
|
// }
|
|
|
// })
|
|
|
//上传图片
|
|
|
|
|
|
/* $(function() {
|
...
|
...
|
|