baojing.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. (function () {
  2. var page = {
  3. isScroll: true,
  4. init: function ($page) {
  5. var userinfo = learun.storage.get('userinfo');
  6. /*learun.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. $page.find('#plate').val(userinfo.baseinfo.plate);
  20. $page.find('#mobile').val(userinfo.baseinfo.mobile);
  21. $page.find('#date2').lrdate({
  22. type: 'date'
  23. });
  24. $page.find('.lr-btn-block').on('tap', function () {
  25. //var plate = $('#plateselect').children("div").text();
  26. var mobile = $('#mobile').val();
  27. var date = $('#date2').children("div").text();
  28. var reason = $('#textarea').val();
  29. var policedata = {
  30. userid: userinfo.baseinfo.userId,
  31. LicensePlate: userinfo.baseinfo.plate,
  32. UserPhone: mobile,
  33. StolenDate: date,
  34. WoContent: reason
  35. };
  36. learun.httppost(config.webapi + "/?s=api/submit_add_baojing", policedata, function(res) {
  37. console.log(res);
  38. if(res){
  39. learun.layer.toast('提交成功');
  40. learun.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
  41. }else{
  42. learun.layer.warning(res.message, function () { }, '提示', '关闭');
  43. }
  44. })
  45. })
  46. }
  47. };
  48. return page;
  49. })();