index.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. var Permission = window.plugins.Permission;
  49. if(!Permission){
  50. console.log('window.plugins.Permission not installed!');
  51. return;
  52. }
  53. var permissions = [
  54. 'android.permission.ACCESS_FINE_LOCATION'//获取GPS定位权限
  55. ];
  56. Permission.request(permissions, function(results) {
  57. console.log('Permission.request finished');
  58. }, alert);
  59. }
  60. renlian.init(function () {
  61. // 处理 Cordova 暂停并恢复事件
  62. document.addEventListener('pause', onPause.bind(this), false);
  63. document.addEventListener('resume', onResume.bind(this), false);
  64. renlian.tab.init(tabdata);
  65. //APP检查更新
  66. checkAppUpdate();
  67. //APP权限申请
  68. requestPermission();
  69. var logininfo = renlian.storage.get('logininfo');
  70. if (logininfo) {// 有登录的token
  71. renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
  72. }
  73. else {
  74. renlian.nav.go({ path: 'login', isBack: false, isHead: false });
  75. }
  76. //延时等页面加载完再关闭开机动画
  77. setTimeout(function(){
  78. renlian.splashscreen.hide();
  79. },400);
  80. });
  81. function onPause() {
  82. // TODO: 此应用程序已挂起。在此处保存应用程序状态。
  83. }
  84. function onResume() {
  85. // TODO: 此应用程序已重新激活。在此处还原应用程序状态。
  86. }
  87. })(window.jQuery, window.lrmui);
  88. //日期格式化
  89. Date.prototype.Format = function(fmt)
  90. { //author: meizz
  91. var o = {
  92. "M+" : this.getMonth()+1, //月份
  93. "d+" : this.getDate(), //日
  94. "h+" : this.getHours(), //小时
  95. "m+" : this.getMinutes(), //分
  96. "s+" : this.getSeconds(), //秒
  97. "q+" : Math.floor((this.getMonth()+3)/3), //季度
  98. "S" : this.getMilliseconds() //毫秒
  99. };
  100. if(/(y+)/.test(fmt))
  101. fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
  102. for(var k in o)
  103. if(new RegExp("("+ k +")").test(fmt))
  104. fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
  105. return fmt;
  106. }