baojing.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. var stolenaddress = $('#address').val();
  46. var reason = $('#textarea').val();
  47. var policedata = {
  48. userid: userinfo.baseinfo.userId,
  49. LicensePlate: userinfo.baseinfo.plate,
  50. UserPhone: mobile,
  51. StolenDate: date,
  52. StolenCityId:stolencityid,
  53. StolenAddress:stolenaddress,
  54. WoContent: reason
  55. };
  56. //console.log(policedata);
  57. renlian.httppost(config.webapi + "/?s=api/submit_add_baojing", policedata, function(res) {
  58. //console.log(res);
  59. if(res.success == true){
  60. renlian.layer.toast('提交成功');
  61. renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
  62. }else{
  63. renlian.layer.warning(res.message, function () { }, '提示', '关闭');
  64. }
  65. })
  66. })
  67. }
  68. };
  69. return page;
  70. })();