12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- (function () {
- var page = {
- isScroll: true,
- init: function ($page) {
- var userinfo = learun.storage.get('userinfo');
- /*learun.http.get("http://czapp.rltest.cn/?s=api/get_user_platenumber&userid="+userinfo.baseinfo.userId,{}, function (res) {
- if (res) {
- var platedata = [];
- $.each(res.data, function (_index, _item) {
- platedata.push({value:_index,text:_item.LicensePlate});
- $page.find('#plateselect').lrpicker({
- placeholder: '请选择(必填)',
- data: platedata
- });
- });
- }
- });*/
-
- //var platedata = [{value:"123123122223",text:"bj123123"},{value:"123123122223",text:"bj123124"},{value:"1231122223",text:"bj123125"}];
- $page.find('#plate').val(userinfo.baseinfo.plate);
- $page.find('#mobile').val(userinfo.baseinfo.mobile);
- $page.find('#date2').lrdate({
- type: 'date'
- });
-
-
- $page.find('.lr-btn-block').on('tap', function () {
- //var plate = $('#plateselect').children("div").text();
- var mobile = $('#mobile').val();
- var date = $('#date2').children("div").text();
- var reason = $('#textarea').val();
- var policedata = {
- userid: userinfo.baseinfo.userId,
- LicensePlate: userinfo.baseinfo.plate,
- UserPhone: mobile,
- StolenDate: date,
- WoContent: reason
- };
- learun.httppost(config.webapi + "/?s=api/submit_add_baojing", policedata, function(res) {
- console.log(res);
- if(res.success == true){
- learun.layer.toast('提交成功');
- learun.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
- }else{
- learun.layer.warning(res.message, function () { }, '提示', '关闭');
- }
- })
- })
- }
- };
- return page;
- })();
|