...
|
...
|
@@ -160,12 +160,23 @@ |
|
|
$(this).addClass('add_active').siblings().removeClass('add_active')
|
|
|
});
|
|
|
|
|
|
$('#birthday').click(function() {
|
|
|
var dt = new Date();
|
|
|
var df= [dt.getFullYear(), (dt.getMonth() + 1), dt.getDate()];
|
|
|
$('.birthday').on('focus',function() {
|
|
|
var obj = $(this);
|
|
|
var this_date = obj.val();
|
|
|
dt = new Date(Date.parse(this_date.replace('年','-').replace('月','-').replace('日','')))
|
|
|
df= [dt.getFullYear(), (dt.getMonth() + 1), dt.getDate()];
|
|
|
console.log(df);
|
|
|
timeInit(df);
|
|
|
});
|
|
|
|
|
|
// 时间组件
|
|
|
function timeInit(df) {
|
|
|
weui.datePicker({
|
|
|
start: 2000,
|
|
|
end: 2030,
|
|
|
defaultValue: [2015, 6, 9],
|
|
|
defaultValue: df,
|
|
|
onChange: function(result) {
|
|
|
console.log(result);
|
|
|
// $('.#birthday_input').val(result)
|
...
|
...
|
@@ -176,7 +187,7 @@ |
|
|
},
|
|
|
id: 'datePicker'
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
|
|
|
$('.address').click(function() {
|
|
|
var obj = $(this);
|
...
|
...
|
@@ -200,31 +211,6 @@ |
|
|
},
|
|
|
id: 'multiPickerBtn'
|
|
|
});
|
|
|
// weui.picker([{
|
|
|
// label: '月龄版',
|
|
|
// value: '1'
|
|
|
// }, {
|
|
|
// label: '幼幼版',
|
|
|
// value: '2'
|
|
|
// }, {
|
|
|
// label: '快乐版',
|
|
|
// value: '3'
|
|
|
// },{
|
|
|
// label: '成长版',
|
|
|
// value: '4'
|
|
|
// }, {
|
|
|
// label: '学习版',
|
|
|
// value: '5'
|
|
|
// }], {
|
|
|
// onChange: function(result) {
|
|
|
// console.log(result);
|
|
|
// },
|
|
|
// onConfirm: function(result) {
|
|
|
// $('#product').val(result[0].label)
|
|
|
// console.log(result);
|
|
|
// },
|
|
|
// id: 'multiPickerBtn'
|
|
|
// });
|
|
|
});
|
|
|
|
|
|
//下一步
|
...
|
...
|
@@ -268,6 +254,7 @@ |
|
|
var text = btn.text();
|
|
|
if(submit_common('.form_data',form_data)) {
|
|
|
if(allow_submit) {
|
|
|
console.log(form_data);
|
|
|
allow_submit = false;
|
|
|
var data = {
|
|
|
id: "{$orderInfo.id}",
|
...
|
...
|
@@ -348,12 +335,6 @@ |
|
|
status = false;
|
|
|
return false;
|
|
|
} else {
|
|
|
// 判断客户编号类型,长度必须为10位;判断手机号码格式是否正确
|
|
|
// if($(this).data('type') == 12 && $(this).find('input').val().length != 10 && $(this).data('validate') == 1) {
|
|
|
// _error($(this).find('._validate').html()+'长度必须为10位');
|
|
|
// status = false;
|
|
|
// return false;
|
|
|
// } else
|
|
|
if($(this).data('type') == 3 && $(this).data('validate') == 1) {
|
|
|
if(!reg.test($(this).find('input').val())) {
|
|
|
_error($(this).find('._validate').html()+'格式错误');
|
...
|
...
|
@@ -366,6 +347,15 @@ |
|
|
}
|
|
|
}
|
|
|
}
|
|
|
if($(this).find('textarea').length > 0){
|
|
|
if($(this).find('textarea').val() == '' && $(this).data('validate') == 1) {
|
|
|
_error($(this).find('._validate').html()+'不能为空');
|
|
|
status = false;
|
|
|
return false;
|
|
|
} else {
|
|
|
value = $(this).find('textarea').val();
|
|
|
}
|
|
|
}
|
|
|
if($(this).find('.order_style').length > 0) {
|
|
|
value = $(this).find('.active').html();
|
|
|
}
|
...
|
...
|
|