index.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. // 有关“空白”模板的简介,请参阅以下文档:
  2. // http://go.microsoft.com/fwlink/?LinkID=397704
  3. // 若要在 cordova-simulate 或 Android 设备/仿真器上在页面加载时调试代码: 启动应用,设置断点,
  4. // 然后在 JavaScript 控制台中运行 "window.location.reload()"。
  5. (function ($, renlian) {
  6. "use strict";
  7. // 初始化页面
  8. var tabdata = [
  9. {
  10. page: 'amap',
  11. text: '首页',
  12. img: 'images/tab10.png',
  13. fillimg: 'images/tab11.png'
  14. },
  15. {
  16. page: 'baojinginfo',
  17. text: '消息',
  18. img: 'images/tab20.png',
  19. fillimg: 'images/tab21.png'
  20. },
  21. {
  22. page: 'my',
  23. text: '我的',
  24. img: 'images/tab40.png',
  25. fillimg: 'images/tab41.png'
  26. }
  27. ];
  28. //APP检查更新
  29. function checkAppUpdate() {
  30. var updateUrl = "http://upgrade.app.rltest.cn/czapp_apk/version.xml";
  31. if(window.AppVersion){
  32. var version = window.AppVersion.version;
  33. console.log('********* current version:'+version+' ************');
  34. }
  35. console.log('********* checkAppUpdate start ************');
  36. if(window.AppUpdate){
  37. window.AppUpdate.checkAppUpdate(onSuccess, onFail, updateUrl);
  38. }
  39. function onFail() {
  40. console.log('fail', JSON.stringify(arguments), arguments);
  41. }
  42. function onSuccess() {
  43. console.log('success', JSON.stringify(arguments), arguments);
  44. }
  45. }
  46. //APP权限申请
  47. function requestPermission(){
  48. if(typeof(window.plugins) == 'undefined'){
  49. console.log('window.plugins not defined!');
  50. return;
  51. }
  52. if(typeof(window.plugins.Permission) == 'undefined'){
  53. console.log('window.plugins.Permission not defined!');
  54. return;
  55. }
  56. var Permission = window.plugins.Permission ;
  57. var permissions = [
  58. 'android.permission.ACCESS_FINE_LOCATION'//获取GPS定位权限
  59. ];
  60. Permission.request(permissions, function(results) {
  61. console.log('Permission.request finished');
  62. }, alert);
  63. }
  64. renlian.init(function () {
  65. // 处理 Cordova 暂停并恢复事件
  66. document.addEventListener('pause', onPause.bind(this), false);
  67. document.addEventListener('resume', onResume.bind(this), false);
  68. renlian.tab.init(tabdata);
  69. //APP检查更新
  70. checkAppUpdate();
  71. //APP权限申请
  72. requestPermission();
  73. var logininfo = renlian.storage.get('logininfo');
  74. if (logininfo) {// 有登录的token
  75. renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
  76. }
  77. else {
  78. renlian.nav.go({ path: 'login', isBack: false, isHead: false });
  79. }
  80. //延时等页面加载完再关闭开机动画
  81. setTimeout(function(){
  82. renlian.splashscreen.hide();
  83. },400);
  84. });
  85. function onPause() {
  86. // TODO: 此应用程序已挂起。在此处保存应用程序状态。
  87. }
  88. function onResume() {
  89. // TODO: 此应用程序已重新激活。在此处还原应用程序状态。
  90. }
  91. })(window.jQuery, window.lrmui);
  92. //日期格式化
  93. Date.prototype.Format = function(fmt)
  94. { //author: meizz
  95. var o = {
  96. "M+" : this.getMonth()+1, //月份
  97. "d+" : this.getDate(), //日
  98. "h+" : this.getHours(), //小时
  99. "m+" : this.getMinutes(), //分
  100. "s+" : this.getSeconds(), //秒
  101. "q+" : Math.floor((this.getMonth()+3)/3), //季度
  102. "S" : this.getMilliseconds() //毫秒
  103. };
  104. if(/(y+)/.test(fmt))
  105. fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
  106. for(var k in o)
  107. if(new RegExp("("+ k +")").test(fmt))
  108. fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
  109. return fmt;
  110. }