123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- // 有关“空白”模板的简介,请参阅以下文档:
- // http://go.microsoft.com/fwlink/?LinkID=397704
- // 若要在 cordova-simulate 或 Android 设备/仿真器上在页面加载时调试代码: 启动应用,设置断点,
- // 然后在 JavaScript 控制台中运行 "window.location.reload()"。
- (function ($, renlian) {
- "use strict";
- // 初始化页面
- var tabdata = [
- {
- page: 'amap',
- text: '首页',
- img: 'images/tab10.png',
- fillimg: 'images/tab11.png'
- },
- {
- page: 'baojinginfo',
- text: '消息',
- img: 'images/tab20.png',
- fillimg: 'images/tab21.png'
- },
- {
- page: 'my',
- text: '我的',
- img: 'images/tab40.png',
- fillimg: 'images/tab41.png'
- }
- ];
-
- //APP检查更新
- function checkAppUpdate() {
- var updateUrl = "http://upgrade.app.rltest.cn/czapp_apk/version.xml";
- if(window.AppVersion){
- var version = window.AppVersion.version;
- console.log('********* current version:'+version+' ************');
- }
- 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);
- }
- }
-
- //APP权限申请
- function requestPermission(){
- if(typeof(window.plugins) == 'undefined'){
- console.log('window.plugins not defined!');
- return;
- }
- if(typeof(window.plugins.Permission) == 'undefined'){
- console.log('window.plugins.Permission not defined!');
- return;
- }
- var Permission = window.plugins.Permission ;
-
- var permissions = [
- 'android.permission.ACCESS_FINE_LOCATION'//获取GPS定位权限
- ];
- Permission.request(permissions, function(results) {
- console.log('Permission.request finished');
- }, alert);
- }
-
- renlian.init(function () {
- // 处理 Cordova 暂停并恢复事件
- document.addEventListener('pause', onPause.bind(this), false);
- document.addEventListener('resume', onResume.bind(this), false);
- renlian.tab.init(tabdata);
- //APP检查更新
- checkAppUpdate();
- //APP权限申请
- requestPermission();
- var logininfo = renlian.storage.get('logininfo');
- if (logininfo) {// 有登录的token
- renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
- }
- else {
- renlian.nav.go({ path: 'login', isBack: false, isHead: false });
- }
- //延时等页面加载完再关闭开机动画
- setTimeout(function(){
- renlian.splashscreen.hide();
- },400);
-
- });
-
-
- function onPause() {
- // TODO: 此应用程序已挂起。在此处保存应用程序状态。
- }
- function onResume() {
- // TODO: 此应用程序已重新激活。在此处还原应用程序状态。
- }
- })(window.jQuery, window.lrmui);
- //日期格式化
- Date.prototype.Format = function(fmt)
- { //author: meizz
- var o = {
- "M+" : this.getMonth()+1, //月份
- "d+" : this.getDate(), //日
- "h+" : this.getHours(), //小时
- "m+" : this.getMinutes(), //分
- "s+" : this.getSeconds(), //秒
- "q+" : Math.floor((this.getMonth()+3)/3), //季度
- "S" : this.getMilliseconds() //毫秒
- };
- if(/(y+)/.test(fmt))
- fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
- for(var k in o)
- if(new RegExp("("+ k +")").test(fmt))
- fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
- return fmt;
- }
|