作者 刘朕
1 个管道 的构建 通过 耗费 1 秒

合并分支 '1iuzhen' 到 'master'

电子订单添加、编辑调整,选择订单类型页面调试



查看合并请求 !240
... ... @@ -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();
}
... ...
... ... @@ -10,11 +10,12 @@
<link rel="stylesheet" type="text/css" href="__TMPL__/public/mobile/css/pay/order_style.css" />
<title>选择订单类型</title>
<style type="text/css">
body,html{
height:100%;
.content_height {
padding-bottom: 0;
}
.container {
height: 100%;
.bottom_icon {
position: absolute;
bottom: 0.2rem;
}
</style>
</head>
... ... @@ -44,10 +45,10 @@
</volist>
</div>
</div>
</div>
<div class="bottom_icon">
<img src="__TMPL__/public/mobile/images/biglogo@2x.png" class="bottom_img" />
<p class="bottom_text">{$site_info.site_name}</p>
<div class="bottom_icon">
<img src="__TMPL__/public/mobile/images/biglogo@2x.png" class="bottom_img" />
<p class="bottom_text">{$site_info.site_name}</p>
</div>
</div>
<script src="__TMPL__/public/mobile/js/jquery-2.1.0.js" type="text/javascript" charset="utf-8"></script>
<script src="__TMPL__/public/mobile/js/swiper-4.3.5.min.js" type="text/javascript" charset="utf-8"></script>
... ...
... ... @@ -153,12 +153,14 @@
$(this).addClass('add_active').siblings().removeClass('add_active')
});
var dt = new Date();
var df= [dt.getFullYear(), (dt.getMonth() + 1), dt.getDate()];
$('.birthday').click(function() {
var obj = $(this);
weui.datePicker({
start: 2000,
end: 2030,
defaultValue: [2015, 6, 9],
defaultValue: df,
onChange: function(result) {
// console.log(result);
// $('.#birthday_input').val(result)
... ... @@ -298,12 +300,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()+'格式错误');
... ... @@ -316,6 +312,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();
}
... ...