baojing.js 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. (function () {
  2. var page = {
  3. isScroll: true,
  4. init: function ($page) {
  5. var userinfo = renlian.storage.get('userinfo');
  6. /*renlian.http.get("http://czapp.rltest.cn/?s=api/get_user_platenumber&userid="+userinfo.baseinfo.userId,{}, function (res) {
  7. if (res) {
  8. var platedata = [];
  9. $.each(res.data, function (_index, _item) {
  10. platedata.push({value:_index,text:_item.LicensePlate});
  11. $page.find('#plateselect').lrpicker({
  12. placeholder: '请选择(必填)',
  13. data: platedata
  14. });
  15. });
  16. }
  17. });*/
  18. //var platedata = [{value:"123123122223",text:"bj123123"},{value:"123123122223",text:"bj123124"},{value:"1231122223",text:"bj123125"}];
  19. renlian.httpget(config.webapi + "/?s=api/get_cityinfo_by_cityid&cityid="+userinfo.baseinfo.cityid, {}, function(res) {
  20. console.log(res);
  21. $page.find('#select3').lrpickerSet(res.data);
  22. //$page.find('#select3').lrpickerSet('20,331,2012');
  23. });
  24. $page.find('#plate').val(userinfo.baseinfo.plate);
  25. $page.find('#mobile').val(userinfo.baseinfo.mobile);
  26. //console.log(userinfo);
  27. // renlian.httpget(config.webapi + "/?s=api/getCityInfo&cityid="+userinfo.baseinfo.cityid, {}, function(res) {
  28. // console.log(res);
  29. // });
  30. //console.log(userinfo);
  31. $page.find('#select3').lrpicker({
  32. placeholder: '请选择',
  33. data: cityData,
  34. level: 3
  35. });
  36. $page.find('#date2').lrdate({
  37. type: 'date'
  38. });
  39. $page.find('.lr-btn-block').on('tap', function () {
  40. //var plate = $('#plateselect').children("div").text();
  41. var mobile = $('#mobile').val();
  42. var date = $('#date2').children("div").text();
  43. var stolencityid = $page.find('#select3').lrpickerGet('vaule');
  44. //console.log($page.find('#select3').lrpickerGet('vaule'));
  45. if(!mobile){
  46. renlian.layer.toast('手机号不能为空');
  47. return;
  48. }
  49. var myreg=/^[1][3,4,5,7,8][0-9]{9}$/;
  50. if (!myreg.test(mobile)) {
  51. renlian.layer.toast('手机号格式不正确!');
  52. return;
  53. }
  54. if(date == '请选择'){
  55. renlian.layer.toast('请选择被盗日期');
  56. return;
  57. }
  58. var stolenaddress = $('#address').val();
  59. if(!stolenaddress){
  60. renlian.layer.toast('事发地址不能为空');
  61. return;
  62. }
  63. var reason = $('#textarea').val();
  64. var reasons = reason.replace(/(^\s*)|(\s*$)/g, "");
  65. if(!reasons){
  66. renlian.layer.toast('请填写报警原因');
  67. return;
  68. }
  69. var policedata = {
  70. userid: userinfo.baseinfo.userId,
  71. LicensePlate: userinfo.baseinfo.plate,
  72. UserPhone: mobile,
  73. StolenDate: date,
  74. StolenCityId:stolencityid,
  75. StolenAddress:stolenaddress,
  76. WoContent: reason
  77. };
  78. //console.log(policedata);
  79. renlian.httppost(config.webapi + "/?s=api/submit_add_baojing", policedata, function(res) {
  80. //console.log(res);
  81. if(res.success == true){
  82. renlian.layer.toast('提交成功');
  83. renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
  84. }else{
  85. renlian.layer.warning(res.message, function () { }, '提示', '关闭');
  86. }
  87. })
  88. })
  89. }
  90. };
  91. return page;
  92. })();