blob: 3586930138b277ed66db3b79d26d3fb932bc59a6 [file] [log] [blame]
qiaoweif044a742019-07-10 16:04:20 +08001var app = {
2
3 // Application Constructor
4 initialize: function() {
5 document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
6 },
7
8 onDeviceReady: function() {
9 var uid = window.localStorage.getItem("uid");
10 var phone = window.localStorage.getItem("phoneX");
11
12 },
13 editPwd: function() {
14 window.location = "editpwd.html";
15 },
16 toPayPwd: function() {
17 window.location = "paypwdmng.html";
18 },
19 logout:function(){
20 window.localStorage.removeItem("token");
21 window.location = "login.html";
22 }
23};
24app.initialize();