index.js 3.1 KB

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