index.js 3.3 KB

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