diff --git a/scr/wechat-weapp-mapdemo-master/app.json b/scr/wechat-weapp-mapdemo-master/app.json index 2768917..365e62f 100644 --- a/scr/wechat-weapp-mapdemo-master/app.json +++ b/scr/wechat-weapp-mapdemo-master/app.json @@ -3,7 +3,10 @@ "pages/login/login", "pages/location/location", "pages/Find directions/Find directions", - "pages/text/text" + "pages/text/text", + "pages/ModifyMap/ModifyMap", + "pages/ModifyInformation/ModifyInformation", + "pages/ManageAccount/ManageAccount" ], "window":{ "backgroundTextStyle":"light", diff --git a/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.js b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.js new file mode 100644 index 0000000..923b075 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.js @@ -0,0 +1,23 @@ +Page({ + data: { + loginOK: false + }, + //map + map() { + wx.navigateTo({ + url: '/pages/ModifyMap/ModifyMap', + }) + }, + //information + information() { + wx.navigateTo({ + url: '/pages/ModifyInformation/ModifyInformation', + }) + }, + //account + account() { + wx.navigateTo({ + url: '/pages/ManageAccount/ManageAccount' + }) + } +}) \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.json b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxml b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxml new file mode 100644 index 0000000..175e3ab --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxss b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxss new file mode 100644 index 0000000..ee27500 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxss @@ -0,0 +1 @@ +/* pages/ManageAccount/ManageAccount.wxss */ \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.js b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.js new file mode 100644 index 0000000..923b075 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.js @@ -0,0 +1,23 @@ +Page({ + data: { + loginOK: false + }, + //map + map() { + wx.navigateTo({ + url: '/pages/ModifyMap/ModifyMap', + }) + }, + //information + information() { + wx.navigateTo({ + url: '/pages/ModifyInformation/ModifyInformation', + }) + }, + //account + account() { + wx.navigateTo({ + url: '/pages/ManageAccount/ManageAccount' + }) + } +}) \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.json b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxml b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxml new file mode 100644 index 0000000..3462d31 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxss b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxss new file mode 100644 index 0000000..5124cdd --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxss @@ -0,0 +1 @@ +/* pages/ModifyInformation/ModifyInformation.wxss */ \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.js b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.js new file mode 100644 index 0000000..923b075 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.js @@ -0,0 +1,23 @@ +Page({ + data: { + loginOK: false + }, + //map + map() { + wx.navigateTo({ + url: '/pages/ModifyMap/ModifyMap', + }) + }, + //information + information() { + wx.navigateTo({ + url: '/pages/ModifyInformation/ModifyInformation', + }) + }, + //account + account() { + wx.navigateTo({ + url: '/pages/ManageAccount/ManageAccount' + }) + } +}) \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.json b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxml b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxml new file mode 100644 index 0000000..4ba3dee --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxss b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxss new file mode 100644 index 0000000..1a609e6 --- /dev/null +++ b/scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxss @@ -0,0 +1 @@ +/* pages/ModifyMap/ModifyMap.wxss */ \ No newline at end of file diff --git a/scr/wechat-weapp-mapdemo-master/pages/login/login.js b/scr/wechat-weapp-mapdemo-master/pages/login/login.js index ce44869..91c3f1c 100644 --- a/scr/wechat-weapp-mapdemo-master/pages/login/login.js +++ b/scr/wechat-weapp-mapdemo-master/pages/login/login.js @@ -21,7 +21,7 @@ Page({ showpage: function(){ wx.reLaunch( { - url:'../Find directions/Find directions' + url:'../ModifyMap/ModifyMap' } ) } diff --git a/scr/wechat-weapp-mapdemo-master/pages/login/login.wxml b/scr/wechat-weapp-mapdemo-master/pages/login/login.wxml index 956bf07..326cad0 100644 --- a/scr/wechat-weapp-mapdemo-master/pages/login/login.wxml +++ b/scr/wechat-weapp-mapdemo-master/pages/login/login.wxml @@ -2,7 +2,7 @@ 错误提示 登录 - + 用户名 @@ -21,12 +21,12 @@ - - + + - + - 注册,忘记密码请联系qq:xx + 注册,忘记密码请联系qq:xx \ No newline at end of file