index.js 2.6 KB

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