Prechádzať zdrojové kódy

客户端请求改用ajax,cordovaHttp插件数据格式ajax不一致

git 6 rokov pred
rodič
commit
12e7ea6a5f

+ 1 - 0
pages/amap/amap.css

@@ -296,6 +296,7 @@ hr{
     z-index: 555;
     z-index: 555;
     margin-right: 15px;
     margin-right: 15px;
     justify-content: flex-end;
     justify-content: flex-end;
+    margin-bottom: 2em;
 }
 }
 .big-circle{
 .big-circle{
     display: flex;
     display: flex;

+ 9 - 8
pages/amap/route/route.js

@@ -62,7 +62,7 @@
                 //创建一个巡航器
                 //创建一个巡航器
                 var navg0 = learun.pathSimplifierIns.createPathNavigator(0, //关联第1条轨迹
                 var navg0 = learun.pathSimplifierIns.createPathNavigator(0, //关联第1条轨迹
                     {
                     {
-                        loop: true, //循环播放
+                        loop: false, //循环播放
                         speed: 10000
                         speed: 10000
                     });
                     });
                 
                 
@@ -114,21 +114,22 @@
                     }
                     }
                     if(navg0.getNaviStatus() == 'moving'){
                     if(navg0.getNaviStatus() == 'moving'){
                         navg0.pause();
                         navg0.pause();
-                        $('#play-pause').removeClass('icon-bofang');
-                        $('#play-pause').addClass('icon-zanting');
+                        $('#play-pause').removeClass('icon-zanting');
+                        $('#play-pause').addClass('icon-bofang');
                     }
                     }
                     //当前节点索引
                     //当前节点索引
-                    var lastNode = navg0.getCursor().idx;
-                    console.log(lastNode);
-                    if(lastNode == 0){
+                    var presentNode = navg0.getCursor().idx;
+                    console.log(presentNode);
+                    if(presentNode == 0){
                         navg0.moveToPoint(0, 0);
                         navg0.moveToPoint(0, 0);
                         console.log('tt');
                         console.log('tt');
                         return;
                         return;
                     }
                     }
-                    
+
                     
                     
                     console.log(navg0.getCursor());
                     console.log(navg0.getCursor());
-                    navg0.moveToPoint(lastNode-1, 0);
+                    navg0.moveToPoint(presentNode-1, 0);
+                    learun.pathSimplifierIns.render();
                 });
                 });
                 $page.find('.icon-next').on('tap', function () {
                 $page.find('.icon-next').on('tap', function () {
                     //下一个节点
                     //下一个节点

+ 3 - 2
pages/baojinginfo/baojinginfo.js

@@ -38,16 +38,17 @@
 									msg_html += '\
 									msg_html += '\
 										<div class="lr-list">\
 										<div class="lr-list">\
 												<div class="lr-list-item lr-list-item-multi" style="line-height: 25px;">\
 												<div class="lr-list-item lr-list-item-multi" style="line-height: 25px;">\
-													<h4>'+ _item.AddTime +'</h4>\
+													<h4 id="time">'+ _item.AddTime +'</h4>\
 													<p class="lr-ellipsis">'+ _item.LicensePlate +'<span class="" style="right: 15px;position: absolute;top: 50%;transform: translateY(-50%);">'+ _item.DeviceNumber +'</span></p>\
 													<p class="lr-ellipsis">'+ _item.LicensePlate +'<span class="" style="right: 15px;position: absolute;top: 50%;transform: translateY(-50%);">'+ _item.DeviceNumber +'</span></p>\
 													<a class="lr-nav-right" id="gaojingdetail">'+ _item.Type +'<span class="lr-badge lr-badge-primary lr-badge-inverted">详情</span></a>\
 													<a class="lr-nav-right" id="gaojingdetail">'+ _item.Type +'<span class="lr-badge lr-badge-primary lr-badge-inverted">详情</span></a>\
 												</div>\
 												</div>\
 											</div>';
 											</div>';
 								});
 								});
 							}else{
 							}else{
-								msg_html += '<h4>暂无消息</h4>';	
+								msg_html += '<h4>暂无消息</h4>';
 							}
 							}
 							$page.find('#gaojinginfo').html(msg_html);
 							$page.find('#gaojinginfo').html(msg_html);
+							var addtime = $('#time').text();
 							$('#gaojingdetail').on('tap', function () {	
 							$('#gaojingdetail').on('tap', function () {	
 								learun.nav.go({ path: 'alarmdetail', title: '告警详情', type: 'right', param:'{"addtime":'+addtime+'}'});
 								learun.nav.go({ path: 'alarmdetail', title: '告警详情', type: 'right', param:'{"addtime":'+addtime+'}'});
 							});
 							});

+ 22 - 1
scripts/lrmui.js

@@ -321,7 +321,27 @@ u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(
             });
             });
         },
         },
         async: function (type, url, param, callback, dataType) {
         async: function (type, url, param, callback, dataType) {
-            if (window.lrmui.isreal) {
+            return $.ajax({
+				url: url,
+				data: param,
+				type: type,
+				dataType: dataType || "json",
+				async: true,
+				cache: false,
+				success: function (res) {
+					callback(res);
+				},
+				error: function (XMLHttpRequest, textStatus, errorThrown) {
+					callback(null);
+				},
+				beforeSend: function () {
+				},
+				complete: function () {
+				}
+			});
+			
+			/*
+			if (window.lrmui.isreal) {
                 if (type === 'GET') {
                 if (type === 'GET') {
                     window.cordovaHTTP.get(url, param, {}, function (res) {
                     window.cordovaHTTP.get(url, param, {}, function (res) {
                         callback(JSON.parse(res.data));
                         callback(JSON.parse(res.data));
@@ -357,6 +377,7 @@ u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(
                     }
                     }
                 });
                 });
             }
             }
+			*/
         }
         }
     };
     };