|
@@ -21,11 +21,11 @@
|
|
|
console.log(res);
|
|
|
$page.find('#select3').lrpickerSet(res.data);
|
|
|
|
|
|
- // $page.find('#select3').lrpickerSet('20,331,2012');
|
|
|
+ //$page.find('#select3').lrpickerSet('20,331,2012');
|
|
|
});
|
|
|
$page.find('#plate').val(userinfo.baseinfo.plate);
|
|
|
$page.find('#mobile').val(userinfo.baseinfo.mobile);
|
|
|
- console.log(userinfo);
|
|
|
+ //console.log(userinfo);
|
|
|
// renlian.httpget(config.webapi + "/?s=api/getCityInfo&cityid="+userinfo.baseinfo.cityid, {}, function(res) {
|
|
|
// console.log(res);
|
|
|
// });
|
|
@@ -46,14 +46,31 @@
|
|
|
var mobile = $('#mobile').val();
|
|
|
var date = $('#date2').children("div").text();
|
|
|
var stolencityid = $page.find('#select3').lrpickerGet('vaule');
|
|
|
- console.log($page.find('#select3').lrpickerGet('vaule'));
|
|
|
+ //console.log($page.find('#select3').lrpickerGet('vaule'));
|
|
|
+ if(!mobile){
|
|
|
+ renlian.layer.toast('手机号不能为空');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var myreg=/^[1][3,4,5,7,8][0-9]{9}$/;
|
|
|
+ if (!myreg.test(mobile)) {
|
|
|
+ renlian.layer.toast('手机号格式不正确!');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if(date == '请选择'){
|
|
|
+ renlian.layer.toast('请选择被盗日期');
|
|
|
+ return;
|
|
|
+ }
|
|
|
var stolenaddress = $('#address').val();
|
|
|
if(!stolenaddress){
|
|
|
- renlian.layer.toast('案发地址不能为空');
|
|
|
+ renlian.layer.toast('事发地址不能为空');
|
|
|
return;
|
|
|
}
|
|
|
var reason = $('#textarea').val();
|
|
|
-
|
|
|
+ var reasons = reason.replace(/(^\s*)|(\s*$)/g, "");
|
|
|
+ if(!reasons){
|
|
|
+ renlian.layer.toast('请填写报警原因');
|
|
|
+ return;
|
|
|
+ }
|
|
|
var policedata = {
|
|
|
userid: userinfo.baseinfo.userId,
|
|
|
LicensePlate: userinfo.baseinfo.plate,
|