From 9b8a80d30bda605c520362693cd9fc2e6d090d7e Mon Sep 17 00:00:00 2001
From: wny <1665951082@qq.com>
Date: Tue, 1 Nov 2022 14:13:40 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
scr/wechat-weapp-mapdemo-master/app.json | 5 +++-
.../pages/ManageAccount/ManageAccount.js | 23 +++++++++++++++++++
.../pages/ManageAccount/ManageAccount.json | 3 +++
.../pages/ManageAccount/ManageAccount.wxml | 5 ++++
.../pages/ManageAccount/ManageAccount.wxss | 1 +
.../ModifyInformation/ModifyInformation.js | 23 +++++++++++++++++++
.../ModifyInformation/ModifyInformation.json | 3 +++
.../ModifyInformation/ModifyInformation.wxml | 5 ++++
.../ModifyInformation/ModifyInformation.wxss | 1 +
.../pages/ModifyMap/ModifyMap.js | 23 +++++++++++++++++++
.../pages/ModifyMap/ModifyMap.json | 3 +++
.../pages/ModifyMap/ModifyMap.wxml | 5 ++++
.../pages/ModifyMap/ModifyMap.wxss | 1 +
.../pages/login/login.js | 2 +-
.../pages/login/login.wxml | 10 ++++----
15 files changed, 106 insertions(+), 7 deletions(-)
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.js
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.json
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxml
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ManageAccount/ManageAccount.wxss
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.js
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.json
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxml
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyInformation/ModifyInformation.wxss
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.js
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.json
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxml
create mode 100644 scr/wechat-weapp-mapdemo-master/pages/ModifyMap/ModifyMap.wxss
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