Просмотр исходного кода

1.丢失报警页增加案件类型选项;2.增加APP在线自动更新功能;

git лет назад: 5
Родитель
Сommit
7e78c63c1c
6 измененных файлов с 80 добавлено и 6 удалено
  1. 49 0
      data/bjtype.js
  2. 1 0
      index.html
  3. 1 1
      pages/baojing/baojing.html
  4. 9 2
      pages/baojing/baojing.js
  5. 1 1
      pages/baojingindex/baojingindex.js
  6. 19 2
      scripts/index.js

+ 49 - 0
data/bjtype.js

@@ -11,5 +11,54 @@
             value: "100199",
             text: "其他盗窃"
         }]
+    },{
+        value: "002",
+        text: "抢劫",
+        children: [ {
+            value: "100299",
+            text: "其他抢劫"
+        }]
+    },{
+        value: "003",
+        text: "抢夺",
+        children: [ {
+            value: "100399",
+            text: "其他抢夺"
+        }]
+    }]
+},{
+    value: "2",
+    text: "治安案件",
+    children: [ {
+        value: "004",
+        text: "盗窃",
+        children: [ {
+            value: "201002",
+            text: "盗窃电动自行车"
+        }, {
+            value: "201005",
+            text: "其他盗窃"
+        },{
+            value: "201003",
+            text: "盗窃电动车电瓶"
+        }]
+    }]
+},{
+    value: "3",
+    text: "群众救助",
+    children: [ {
+        value: "50",
+        text: "群众救助",
+		 children: [ {
+            value: "-",
+            text: "-"
+        }]
+    },{
+        value: "500900",
+        text: "其他群众救助",
+		children: [ {
+            value: "-",
+            text: "-"
+        }]
     }]
 }] 

+ 1 - 0
index.html

@@ -24,6 +24,7 @@
         <div class="lr-tabbar" style="display:none;"></div>
         <script type="text/javascript" src="cordova.js"></script>
         <script type="text/javascript" src="data/city.js"></script>
+		<script type="text/javascript" src="data/bjtype.js"></script>
         <script type="text/javascript" src="scripts/echarts.js"></script>
         <script type="text/javascript" src="scripts/rlmui.js"></script>
         <!-- <script type="text/javascript" src="scripts/rlmuidebug.js"></script> -->

+ 1 - 1
pages/baojing/baojing.html

@@ -15,7 +15,7 @@
         <input id='mobile' type="text">
     </div>
       <div class="lr-form-row">
-        <label>被盗种类<font style="color:red;position:initial;"> *</font></label>
+        <label>报警种类<font style="color:red;position:initial;"> *</font></label>
         <div id="select4"></div>
     </div>
 	<div class="lr-form-row">

+ 9 - 2
pages/baojing/baojing.js

@@ -37,7 +37,7 @@
              });
 			 $page.find('#select4').lrpicker({
                 placeholder: '请选择',
-                data: cityData,
+                data: bjTypeData,
                 level: 3
              });
             $page.find('#date2').lrdate({
@@ -49,8 +49,10 @@
 				//var plate = $('#plateselect').children("div").text();
 				var mobile = $('#mobile').val();
 				var date = $('#date2').children("div").text();
+				var bjtp = $('#select4').children("div").text();
 				var stolencityid = $page.find('#select3').lrpickerGet('vaule');
-				//console.log($page.find('#select3').lrpickerGet('vaule'));
+				var bjtypeid = $page.find('#select4').lrpickerGet('vaule');
+				//console.log(bjtypeid);
 				if(!mobile){
 					renlian.layer.toast('手机号不能为空');
 					return;
@@ -64,6 +66,10 @@
 					renlian.layer.toast('请选择被盗日期');
 					return;
 				}
+				if(bjtp == '请选择'){
+					renlian.layer.toast('请选择报警种类');
+					return;
+				}
 				var stolenaddress = $('#address').val();
 				if(!stolenaddress){
 					renlian.layer.toast('事发地址不能为空');
@@ -81,6 +87,7 @@
                         UserPhone: mobile,
                         StolenDate: date,
 						StolenCityId:stolencityid,
+						bjtypeid:bjtypeid,
 						StolenAddress:stolenaddress,
 						WoContent: reason
                     };

+ 1 - 1
pages/baojingindex/baojingindex.js

@@ -9,7 +9,7 @@
 				renlian.tab.go('demo/baojing');
 			});
 			$page.find('.auto-baojing').on('tap', function () {
-				renlian.nav.go({ path: 'baojing', title: '自助报警<span>(试运行)</span>', type: 'right' });
+				renlian.nav.go({ path: 'baojing', title: '自助报警', type: 'right' });
             });
             
 

+ 19 - 2
scripts/index.js

@@ -25,13 +25,30 @@
             fillimg: 'images/tab41.png'
         }
     ];
-
+	
+	//APP检查更新
+	function checkAppUpdate() {
+		var updateUrl = "http://upgrade.app.rltest.cn/czapp_apk/version.xml";
+		console.log('********* checkAppUpdate start ************');
+		if(window.AppUpdate){
+			window.AppUpdate.checkAppUpdate(onSuccess, onFail, updateUrl);
+		}
+		
+		function onFail() {
+			console.log('fail', JSON.stringify(arguments), arguments);
+		}
+		function onSuccess() {
+			console.log('success', JSON.stringify(arguments), arguments);
+		}
+	}
+	
     renlian.init(function () {
         // 处理 Cordova 暂停并恢复事件
         document.addEventListener('pause', onPause.bind(this), false);
         document.addEventListener('resume', onResume.bind(this), false);
         renlian.tab.init(tabdata);
-		
+		//APP检查更新
+		checkAppUpdate();
         var logininfo = renlian.storage.get('logininfo');
         if (logininfo) {// 有登录的token
 			renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });