Browse Source

fix index and tongji

git 5 years ago
parent
commit
5a6ebd9d46

File diff suppressed because it is too large
+ 11372 - 11512
data/city.js


BIN
images/plate.jpg


BIN
images/wait.png


BIN
images/xuzhi.jpg


+ 21 - 10
pages/amap/amap.js

@@ -203,7 +203,8 @@
                 });
             }
 			mainMap.on('complete', function(){
-                get_mobile_gps_location()
+                get_mobile_gps_location();
+                getVehicleData(overlayData, true);
 				renlian.layer.loading(false);
             });
             var bicycleIcon = new AMap.Icon({size: new AMap.Size(32,32), image:'./images/bicycle-2.png', imageSize:new AMap.Size(32,32)})
@@ -236,18 +237,20 @@
 
             getVehicleData = function(t, first=false){
                 var deviceNumber = renlian.storage.get('userinfo').baseinfo['deviceNumber'];
+                var licensePlate = renlian.storage.get('userinfo').baseinfo.plate;
                 var mapData = null;
-                renlian.httpget(config.webapi+"/?s=api/get_map_index_data", {deviceNumber:deviceNumber}, function (_res) {
+                renlian.httpget(config.webapi+"/?s=api/get_map_index_data", {deviceNumber:deviceNumber, licensePlate:licensePlate}, function (_res) {
                     mapData = _res.data;
                     if(!mapData){
                         renlian.layer.warning('无地图数据,请检测网络或联系管理员!', function () { }, '提示', '关闭');
                         return;
                     }
+                    console.log(mapData);
                     latlngSign = mapData.vehicleLocation.longitude;
                     if(!latlngSign){
                         console.log('test')
-                        first = false;    
-                        t.map.setZoomAndCenter(15,[120.202222,30.184811]);
+                        first = false;
+                        t.map.setZoomAndCenter(15,startEnd.start);
                         t.vehicle.setPosition(null);
                         t.vehicle.setMap(null);
                     }else{
@@ -260,7 +263,14 @@
                     if(first){
                         t.map.setZoomAndCenter(15,vehiclePt);
                     }
-                    $('#battery').html(mapData.battery+'%');
+                    if(!mapData.battery){
+                        $('#battery').html('正常');
+                        $('#battery').css({color:"green"});
+                    }else{
+                        $('#battery').html(mapData.battery);
+                        $('#battery').css({color:"red"});
+                    }
+                    
 
                     vehicleInfoWin();
                     
@@ -289,9 +299,10 @@
                     var fence = mapData.fenceShapeInfo;
                     if(fence){
                         fence = JSON.parse(fence);
-                        if(fence.type == 'circle'){
-                            t.circle.setCenter(new AMap.LngLat(fence.data.center.lng, fence.data.center.lat));
-                            t.circle.setRadius(parseInt(fence.data.radius));
+                        var fenceInfo = JSON.parse(fence.fenceInfo)
+                        if(fenceInfo.type == 'circle'){
+                            t.circle.setCenter(new AMap.LngLat(fenceInfo.data.center.lng, fenceInfo.data.center.lat));
+                            t.circle.setRadius(parseInt(fenceInfo.data.radius));
                             t.circle.setMap(t.map);
                         }                 
                     }
@@ -347,7 +358,7 @@
 
 
             //test
-            getVehicleData(overlayData, true);
+
 
 
             var geocoder;
@@ -454,7 +465,7 @@
 
             //围栏页跳转
             $('#electric-fence').on('tap', function () {
-                renlian.nav.go({ path: 'amap/fence', title: '围栏设置', isBack: true, isHead: true, param: 'test' });
+                renlian.nav.go({ path: 'amap/fence', title: '围栏设置', isBack: true, isHead: true, param: {default:startEnd.start} });
                 if(infoWindow){infoWindow.close( );}
             });
 

+ 33 - 5
pages/amap/fence/fence.js

@@ -26,9 +26,33 @@
             var rangeObj = $('#fence-radius');
 
             function getFenceData(){
-                renlian.httpget(config.webapi+'?s=api/get_fence_info',userinfo.baseinfo.deviceNumber,function(res){
+                renlian.httpget(config.webapi+'?s=api/get_fence_info',userinfo.baseinfo.plate,function(res){
                     if(!res.success){
                         renlian.layer.toast(res.message);
+                        var fenceInfo = {radius:500, center:param.default}
+                        if(!circleFence){
+                            circleFence = new AMap.Circle({
+                                center: fenceInfo.center,
+                                radius: fenceInfo.radius, 
+                                strokeOpacity: 0,
+                                strokeWeight: 0,
+                                strokeOpacity: 0.2,
+                                fillOpacity: 0.3,
+                                fillColor : '#1791fc',
+                                zIndex: 50,
+                            });
+                        }
+                        if(!rangeObj){
+                            rangeObj = $('#fence-radius');
+                        }
+    
+    
+                        rangeObj[0].value = fenceInfo.radius;
+                        $('#display-radius')[0].innerHTML = rangeObj[0].value;
+    
+    
+                        circleFence.setMap(map)
+                        map.setFitView(circleFence);
                         return;
                     }
                     if(!oldCircle){
@@ -43,11 +67,9 @@
                             zIndex: 50,
                         });
                     }
-
                     var fence = JSON.parse(res.data);
                     var fenceStatus = fence.fenceStatus;
-
-                    if(fenceStatus !== '0'){
+                    if(fenceStatus !== false){
                         $('#fence-switch').addClass('f-active');
                     }
 
@@ -60,7 +82,7 @@
                         oldCircle.setRadius(fenceInfo.radius);
                         oldCircle.setMap(map);
                     }else{
-                        var fenceInfo = {radius:500, center:[120.210649,30.246071]}
+                        
                     }
 
                     if(!circleFence){
@@ -147,6 +169,7 @@
 
                 var data = {};
                 data.vehicleNumber = userinfo.baseinfo.deviceNumber;
+                data.plate = userinfo.baseinfo.plate;
                 data.data =  JSON.stringify(fenceData);
                 data.fenceAlarmEnable = fenceEnable;
                 return data;
@@ -170,7 +193,12 @@
                         renlian.layer.toast(res.message);
                         return;
                     }
+                    var oldInfo = JSON.parse(data.data);
+                    var center = new AMap.LngLat(oldInfo.data.center.lng, oldInfo.data.center.lat)
+                    oldCircle.setCenter(center);
+                    oldCircle.setRadius(oldInfo.data.radius);
                     renlian.layer.toast('保存成功');
+
                 });
             }
 

+ 8 - 0
pages/baojing/baojing.html

@@ -18,6 +18,14 @@
         <label>选择日期</label>
         <div id="date2"></div>
     </div>
+     <div class="lr-form-row">
+        <label>事发城市</label>
+        <div id="select3"></div>
+    </div>
+    <div class="lr-form-row">
+        <label>事发地址</label>
+        <input type="text" id="address">
+    </div>
     <div class="lr-form-row lr-form-row-multi">
         <label>报警原因</label>
         <!--<div class="lrtextarea"  contenteditable="true" ></div>-->

+ 19 - 1
pages/baojing/baojing.js

@@ -19,6 +19,18 @@
 			//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('#select3').lrpickerSet('20,330,1998');
+			console.log(userinfo);
+			renlian.httpget(config.webapi + "/?s=api/getCityInfo&cityid="+userinfo.baseinfo.cityid, {}, function(res) {
+				console.log(res);
+			});
+            //console.log(userinfo);
+			 $page.find('#select3').lrpicker({
+                placeholder: '请选择',
+                data: cityData,
+                level: 3
+             });
+			
             $page.find('#date2').lrdate({
                 type: 'date'
             });
@@ -28,16 +40,22 @@
 				//var plate = $('#plateselect').children("div").text();
 				var mobile = $('#mobile').val();
 				var date = $('#date2').children("div").text();
+				var stolencityid = $('#select3').children("div").text();
+				console.log($page.find('#select3').lrpickerGet('vaule'));
+				var stolenaddress = $('#address').val();
 				var reason = $('#textarea').val();
 				var policedata = {
 						userid: userinfo.baseinfo.userId,
                         LicensePlate: userinfo.baseinfo.plate,
                         UserPhone: mobile,
                         StolenDate: date,
+						StolenCityId:stolencityid,
+						StolenAddress:stolenaddress,
 						WoContent: reason
                     };
+					//console.log(policedata);
 				renlian.httppost(config.webapi + "/?s=api/submit_add_baojing", policedata, function(res) {
-					console.log(res);
+					//console.log(res);
 					if(res.success == true){
 						renlian.layer.toast('提交成功');
 						renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });

+ 15 - 0
pages/forget/forget.css

@@ -0,0 +1,15 @@
+body {
+}
+.tipbox{
+	width: 100%;
+	height: 50%;
+	margin-top: 20%;
+    text-align: center;
+}
+h4{
+    text-align: center;
+}
+.goreg{
+	margin-top: 10%;
+	text-align: center;
+}

+ 8 - 0
pages/forget/forget.html

@@ -0,0 +1,8 @@
+<div class="tipbox">
+	<h4>忘记密码,请重新注册登录信息~</h4>
+</div>
+<div class="goreg">
+    <button type="button" class="lr-btn-link" id="register">
+        立即注册
+    </button>
+</div>

+ 13 - 0
pages/forget/forget.js

@@ -0,0 +1,13 @@
+(function () {
+
+    var page = {
+        isScroll: true,
+        init: function ($page) {
+			$page.find('#register').on('tap', function () {
+				renlian.nav.go({ path: 'register', title: '注册', type: 'right'});
+			})
+        }
+		
+    };
+    return page;
+})();

+ 3 - 0
pages/login/login.html

@@ -20,6 +20,9 @@
 			<button type="button" class="lr-btn-link" id="register">
 				立即注册
 			</button>
+            <button type="button" class="lr-btn-link" id="forget">
+                忘记密码
+            </button>
 		</div>
     </div>
     <div class="version">Copyright © 2019 内蒙古璟意中联科技有限公司</div>

+ 11 - 1
pages/login/login.js

@@ -99,7 +99,17 @@
 			$page.find('#register').on('tap', function () {
 				renlian.nav.go({ path: 'register', title: '注册', type: 'right'});
 			})
-        }
+			$page.find('#forget').on('tap', function () {
+				renlian.nav.go({ path: 'forget', title: '忘记密码', type: 'right'});
+			})
+        },
+
+        reload: function ($page, pageinfo) {
+
+            renlian.layer.loading(false);
+            
+        },
     };
+    
     return page;
 })();

+ 8 - 0
pages/my/my.html

@@ -19,6 +19,14 @@
             <i class="iconfont icon-write"></i>
             <a class="lr-nav-right">修改密码</a>
         </div>
+         <div class="lr-list-item lr-list-item-icon" data-value="myplate">
+            <i class="iconfont icon-phone"></i>
+            <a class="lr-nav-right">我的车牌</a>
+        </div>
+         <div class="lr-list-item lr-list-item-icon" data-value="mybaodan">
+            <i class="iconfont icon-write"></i>
+            <a class="lr-nav-right">我的保单</a>
+        </div>
     </div>
     <div class="lr-list" style="margin-top:15px;">
         <div class="lr-list-item lr-list-item-icon" data-value="aboutrenlian">

+ 97 - 0
pages/my/myplate/myplate.css

@@ -0,0 +1,97 @@
+.lr-mycode-page {
+    position: relative;
+    height: 100%;
+    width: 100%;
+    background-color: #2f2d2d;
+    padding: 80px 20px;
+}
+.lr-mycode-page-content {
+    position: relative;
+    height: 100%;
+    width: 100%;
+    background-color: #fff;
+    border-radius:4px;
+    padding:20px;
+    padding-top:80px;
+}
+.lr-mycode-title {
+    position: absolute;
+    height: 80px;
+    width: 100%;
+    top:20px;
+    left:0;
+    padding-left:90px;
+    padding-top:10px;
+}
+.lr-mycode-title img{
+    position:absolute;
+    top:10px;
+    left:20px;
+    width:60px;
+    height:60px;
+    border-radius:5px;
+}
+    .lr-mycode-title .content {
+        position: relative;
+    }
+    .lr-mycode-title .name {
+        font-size: 16px;
+        margin-bottom: 2px;
+        color: #000;
+    }
+
+    .lr-mycode-title .subname {
+        font-size: 12px;
+        color:#999;
+    }
+
+.lr-mycode-code {
+    position: relative;
+    height: 100%;
+    width: 100%;
+    text-align:center;
+    padding-top:20px;
+}
+    .lr-mycode-code img {
+        width: 100%;
+    }
+
+.title{
+    padding-top : 5px;
+}
+
+h3{
+    text-align: center;
+}
+
+.images{
+    width: 100%;
+    height: 100%;
+    margin-top: 20px;
+}
+
+.messagetext{
+    padding-top: 20px;
+    margin: 0 auto;
+    width: 80%;
+    text-align: center;
+    color: #c2c2c2;
+    display: none;
+}
+
+.phone{
+    color: blue;
+}
+
+.ElectronicPlate{
+    display: none;
+}
+
+.isnull{
+    padding-top: 50%;
+    background-color: white;
+    height: 100%;
+    display: none;
+    text-align: center;
+}
+

+ 10 - 0
pages/my/myplate/myplate.html

@@ -0,0 +1,10 @@
+<div class="lr-list lr-userInfo-list ElectronicPlate">
+   <img src="" class="images" id="FrontElectronicPlateUrl">
+   <img src="" class="images" id="BackElectronicPlateUrl">
+   <div class="messagetext">本驾驶证信息由浙江省公安厅提供,仅供参考,如有疑问,请拨打客服电话<div class="phone">0571-88808880</div></div> 
+</div>
+
+<div class="isnull">
+	<img src="images/wait.png">
+<div>电子车牌正在生成中,请耐心等待...</div>
+</div>

+ 25 - 0
pages/my/myplate/myplate.js

@@ -0,0 +1,25 @@
+(function () {
+    var page = {
+        isScroll: true,
+        init: function ($page) {
+            var userinfo = renlian.storage.get('userinfo');
+            var postdata = {
+                    token: userinfo.baseinfo.token,
+                    loginMark: renlian.deviceId(),                  
+                    userid: userinfo.baseinfo.userId
+            };
+            renlian.http.post(config.webapi + "/?s=api/get_vehicle_ElectronicPlateUrl", postdata, function(res) {
+                  if (res.data.BackElectronicPlateUrl != '' && res.data.BackElectronicPlateUrl != null && res.data.FrontElectronicPlateUrl != '' && res.data.FrontElectronicPlateUrl != null) {
+                     $('.ElectronicPlate').css('display','block');
+                     $('#FrontElectronicPlateUrl').attr('src',res.data.FrontElectronicPlateUrl);
+                     $('#BackElectronicPlateUrl').attr('src',res.data.BackElectronicPlateUrl);
+                  }
+                  else{
+                     $('.isnull').css('display','block');
+                     $('.f-scroll').css('height','100%');
+                  }
+         });
+        }
+    };
+    return page;
+})();

+ 1 - 1
pages/tongji/tongji.html

@@ -3,7 +3,7 @@
 	 <div style="margin-bottom:0" class="lr-black-panel">
 		<div class="lr-title">统计数据</div>
 		<div class="lr-content lr-chart-content">
-			<div class="lr-chart-container" id="chart-bingtu"></div>
+			<div class="lr-chart-container" id="drive-data-bar"></div>
 			</div>
 		</div>
 	</div>

+ 101 - 110
pages/tongji/tongji.js

@@ -1,121 +1,112 @@
 (function () {
     var page = {
         init: function ($page) {
-			//扇形图数据
-			chartMap = {};
-			chartMap['chart-bingtu'] = echarts.init(document.getElementById('chart-bingtu'));
-			var data = [{"name":"测试11","value":"9000.00"},{"name":"测试22","value":"100900.00"},{"name":"测试33","value":"0.00"}];
-			var data2 = [{"name":"9000.00","value":"9000.00"},{"name":"100900.00","value":"100900.00"},{"name":"0.00","value":"0.00"}];
-			//renlian.httpget("", { type: 'chart', id: _item.F_Id }, function(data) {
-			//var type = $('#' + data.Id).attr('data-desktop');
-			var legendData = [];
-			$.each(data, function (_index, _item) {
-				legendData.push(_item.name + _item.value);
-				var data3 = {};
-				data3.name = _item.name + _item.value;
-				data3.value = _item.value;
-				data2.push(data3);
-			});
-			console.log(data2);
-			console.log(legendData);
-			var xData = [];
-			for(let i = 0;i < 5; ++i){
-				var time = new Date(new Date() - 24*60*60*1000*i);
-				var date = time.Format("yy-MM-dd");
-				xData.unshift(date);
-			}
-			// var option = {};
-			// option.tooltip = {
-			// 	trigger: 'item',
-			// 	formatter: "{a} <br/>{b}: {c} ({d}%)"
-			// };
-			// option.legend = {
-			// 	orient: 'vertical',
-			// 	left: 'right',
-			// 	data: legendData
-			// };
-			// option.series = [{
-			// 	name: '占比',
-			// 	type: 'pie',
-			// 	radius : '55%',
-			// 	center: ['40%', '60%'],
-			// 	itemStyle: {
-			// 		emphasis: {
-			// 			shadowBlur: 10,
-			// 			shadowOffsetX: 0,
-			// 			shadowColor: 'rgba(0, 0, 0, 0.5)'
-			// 		}
-			// 	},
-			// 	data: data2
-			// }];
+			var gpsNumber = renlian.storage.get('userinfo').baseinfo.gpsNumber;
+			renlian.httpget(config.webapi+"?s=api/get_driving_data", {gpsNumber:gpsNumber}, function (res) {
+				var sData = [];
+				var drivingdata = null;
+				if(res.success){
+					var respData = res.data;
+					var days5Dist = 0;
+					var day5Time = 0;
+					console.log(respData);
 
-			var option1 = {
-				title:{
-					text: '近期行驶里程',
-					x:'center',
-				},
-				color: ['#3398DB'],
-				tooltip : {
-					trigger: 'axis',
-					axisPointer : {            // 坐标轴指示器,坐标轴触发有效
-						type : 'shadow'        // 默认为直线,可选为:'line' | 'shadow'
-					}
-				},
-				grid: {
-					left: '3%',
-					right: '4%',
-					bottom: '3%',
-					containLabel: true
-				},
-				xAxis : [
-					{
-						type : 'category',
-						data : xData,
-						axisTick: {
-							alignWithLabel: true
-						},
-					}
-				],
-				yAxis : [
-					{
-						name: '里程/公里',
-						type : 'value'
+					respData.forEach(v => {
+						sData.push(v.totalDist);
+						days5Dist += v.totalDist;
+						day5Time += v.totalTime;
+					});
+					var averageSpeed = (days5Dist / day5Time).toFixed(2);
+					if(day5Time == 0){
+						averageSpeed = 0.00;
 					}
-				],
-				series : [
-					{
-						name:'行驶里程',
-						type:'bar',
-						barWidth: '50%',
-						data:[10, 52, 50, 34, 40, 30, 20]
+
+					drivingdata = [{name:'里程总计', value: days5Dist.toFixed(2) + 'km'}, {name:'累计时长', value: days5Dist.toFixed(2) + '小时'}, {name:'平均速度', value: averageSpeed + 'km/h'}]
+										//直方
+					chartMap = {};
+					chartMap['drive-data-bar'] = echarts.init(document.getElementById('drive-data-bar'));
+					var xData = [];
+					for(let i = 0;i < 5; ++i){
+						var time = new Date(new Date() - 24*60*60*1000*i);
+						var date = time.Format("MM-dd");
+						xData.unshift(date);
 					}
-				]
-			};
-			
-			//option.color = ['#df4d4b', '#304552', '#52bbc8', 'rgb(224,134,105)', '#8dd5b4', '#5eb57d', '#d78d2f'];
-			chartMap['chart-bingtu'].setOption(option1);
-			
-			//列表数据
-			//renlian.httpget(config.webapi + "renlian/adms/desktop/data", { type: 'Target', id: _item.F_Id }, function(data){});
-			var drivingdata = '[{"name":"里程总计","value":"236.00km"},{"name":"累计时长","value":"0天24时00分"},{"name":"平均速度", "value":"9.83km/h"}]';
-			data = JSON.parse(drivingdata);
-			var _itemHtml = ''
-			$.each(data, function (_index, _item) {
-				if(_index == 2){
-					_itemHtml += '\
-					<div style="flex: 0 0 100%;height:120px;padding-top: 40px;" class="targetItem">\
-						<div class="number">'+ _item.value + '</div>\
-						<div class="name">'+  _item.name +'</div>\
-					</div>';
+
+					var option1 = {
+						title:{
+							text: '近期行驶里程',
+							x:'center',
+						},
+						color: ['#3398DB'],
+						tooltip : {
+							trigger: 'axis',
+							axisPointer : {            // 坐标轴指示器,坐标轴触发有效
+								type : 'shadow'        // 默认为直线,可选为:'line' | 'shadow'
+							}
+						},
+						grid: {
+							left: '3%',
+							right: '4%',
+							bottom: '3%',
+							containLabel: true
+						},
+						xAxis : [
+							{
+								type : 'category',
+								data : xData,
+								axisTick: {
+									alignWithLabel: true
+								},
+							}
+						],
+						yAxis : [
+							{
+								name: '里程/公里',
+								type : 'value'
+							}
+						],
+						series : [
+							{
+								name:'行驶里程',
+								type:'bar',
+								barWidth: '50%',
+								data:sData
+							}
+						]
+					};
+					
+					chartMap['drive-data-bar'].setOption(option1);
+					
+					//列表数据
+					//renlian.httpget(config.webapi + "renlian/adms/desktop/data", { type: 'Target', id: _item.F_Id }, function(data){});
+					// var drivingdata = '[{"name":"里程总计","value":"236.00km"},{"name":"累计时长","value":"1天00时00分"},{"name":"平均速度", "value":"9.83km/h"}]';
+					// data = JSON.parse(drivingdata);
+					var _itemHtml = ''
+					$.each(drivingdata, function (_index, _item) {
+						if(_index == 2){
+							_itemHtml += '\
+							<div style="flex: 0 0 100%;height:120px;padding-top: 40px;" class="targetItem">\
+								<div class="number">'+ _item.value + '</div>\
+								<div class="name">'+  _item.name +'</div>\
+							</div>';
+						}else{
+							_itemHtml += '\
+								<div style="flex: 0 0 50%;height:120px;padding-top: 40px;" class="targetItem">\
+									<div class="number">'+ _item.value + '</div>\
+									<div class="name">'+  _item.name +'</div>\
+								</div>';
+						}
+						$page.find('#driving-data').html(_itemHtml);
+					}); 
+
+
+
+
 				}else{
-					_itemHtml += '\
-						<div style="flex: 0 0 50%;height:120px;padding-top: 40px;" class="targetItem">\
-							<div class="number">'+ _item.value + '</div>\
-							<div class="name">'+  _item.name +'</div>\
-						</div>';
+
 				}
-				$page.find('#driving-data').html(_itemHtml);
-			}); 
+			});
+
         }
     };
     return page;