Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wx-school-app
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姜雷
wx-school-app
Commits
daa31f56
Commit
daa31f56
authored
Aug 13, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改文件名称
parent
78599268
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
app.tsx
src/app.tsx
+4
-4
Login.tsx
src/pages/Login/Login.tsx
+1
-1
ChangePwd.tsx
src/pages/PassWord/ChangePwd.tsx
+1
-1
ChangeTelAccount.tsx
src/pages/PassWord/ChangeTelAccount.tsx
+1
-1
CustomerSetting.tsx
src/pages/UserSetting/CustomerSetting.tsx
+5
-5
No files found.
src/app.tsx
View file @
daa31f56
...
@@ -32,7 +32,7 @@ class App extends Component {
...
@@ -32,7 +32,7 @@ class App extends Component {
'pages/BarCode/BarCode'
,
'pages/BarCode/BarCode'
,
'pages/Announcement/Announcement'
,
'pages/Announcement/Announcement'
,
'pages/UserSetting/UserSetting'
,
'pages/UserSetting/UserSetting'
,
'pages/Pass
W
ord/ResetPwd'
,
'pages/Pass
w
ord/ResetPwd'
,
'pages/Register/Register'
,
'pages/Register/Register'
,
'pages/Login/Login'
,
'pages/Login/Login'
,
'pages/Feedback/Feedback'
,
'pages/Feedback/Feedback'
,
...
@@ -44,9 +44,9 @@ class App extends Component {
...
@@ -44,9 +44,9 @@ class App extends Component {
'pages/Shower/ShowerAppointment'
,
'pages/Shower/ShowerAppointment'
,
'pages/WaterDispenser/WaterDispenser'
,
'pages/WaterDispenser/WaterDispenser'
,
'pages/Account/Account'
,
'pages/Account/Account'
,
'pages/Pass
W
ord/ChangePwd'
,
'pages/Pass
w
ord/ChangePwd'
,
'pages/Pass
W
ord/ChangeHardwareAccount'
,
'pages/Pass
w
ord/ChangeHardwareAccount'
,
'pages/Pass
W
ord/ChangeTelAccount'
,
'pages/Pass
w
ord/ChangeTelAccount'
,
],
],
window
:
{
window
:
{
backgroundTextStyle
:
'light'
,
backgroundTextStyle
:
'light'
,
...
...
src/pages/Login/Login.tsx
View file @
daa31f56
...
@@ -160,7 +160,7 @@ class Login extends Component {
...
@@ -160,7 +160,7 @@ class Login extends Component {
</
View
>
</
View
>
<
Navigator
<
Navigator
className=
'Login-regist-btn'
className=
'Login-regist-btn'
url=
'/pages/Pass
W
ord/ResetPwd'
>
url=
'/pages/Pass
w
ord/ResetPwd'
>
忘记密码
忘记密码
</
Navigator
>
</
Navigator
>
</
View
>
</
View
>
...
...
src/pages/PassWord/ChangePwd.tsx
View file @
daa31f56
...
@@ -71,7 +71,7 @@ const ChangePwd = () => {
...
@@ -71,7 +71,7 @@ const ChangePwd = () => {
const
goResetpwd
=
()
=>
{
const
goResetpwd
=
()
=>
{
Taro
.
navigateTo
({
Taro
.
navigateTo
({
url
:
'/pages/Pass
W
ord/ResetPwd'
,
url
:
'/pages/Pass
w
ord/ResetPwd'
,
});
});
};
};
...
...
src/pages/PassWord/ChangeTelAccount.tsx
View file @
daa31f56
...
@@ -21,7 +21,7 @@ const ChangeTelAccount = () => {
...
@@ -21,7 +21,7 @@ const ChangeTelAccount = () => {
const
goResetpwd
=
()
=>
{
const
goResetpwd
=
()
=>
{
Taro
.
navigateTo
({
Taro
.
navigateTo
({
url
:
'/pages/Pass
W
ord/ResetPwd'
,
url
:
'/pages/Pass
w
ord/ResetPwd'
,
});
});
};
};
const
changeAccountHandle
=
()
=>
{
const
changeAccountHandle
=
()
=>
{
...
...
src/pages/UserSetting/CustomerSetting.tsx
View file @
daa31f56
...
@@ -3,8 +3,8 @@ import Taro from '@tarojs/taro';
...
@@ -3,8 +3,8 @@ import Taro from '@tarojs/taro';
import
{
View
,
Text
,
Switch
}
from
'@tarojs/components'
;
import
{
View
,
Text
,
Switch
}
from
'@tarojs/components'
;
import
{
useSelector
}
from
'@tarojs/redux'
;
import
{
useSelector
}
from
'@tarojs/redux'
;
import
{
Customer
}
from
'@/types/Customer/Customer'
;
import
{
Customer
}
from
'@/types/Customer/Customer'
;
import
useAccountLogin
from
'../Pass
W
ord/useAccountLogin'
;
import
useAccountLogin
from
'../Pass
w
ord/useAccountLogin'
;
import
useBalanceState
from
'../Pass
W
ord/useBalanceState'
;
import
useBalanceState
from
'../Pass
w
ord/useBalanceState'
;
const
CustomerSetting
=
()
=>
{
const
CustomerSetting
=
()
=>
{
const
userinfo
=
useSelector
(
const
userinfo
=
useSelector
(
...
@@ -13,19 +13,19 @@ const CustomerSetting = () => {
...
@@ -13,19 +13,19 @@ const CustomerSetting = () => {
const
goChangePwd
=
()
=>
{
const
goChangePwd
=
()
=>
{
Taro
.
navigateTo
({
Taro
.
navigateTo
({
url
:
'/pages/Pass
W
ord/ChangePwd'
,
url
:
'/pages/Pass
w
ord/ChangePwd'
,
});
});
};
};
const
goChangeAccount
=
()
=>
{
const
goChangeAccount
=
()
=>
{
Taro
.
navigateTo
({
Taro
.
navigateTo
({
url
:
'/pages/Pass
W
ord/ChangeHardwareAccount'
,
url
:
'/pages/Pass
w
ord/ChangeHardwareAccount'
,
});
});
};
};
const
goChangePhoneAccount
=
()
=>
{
const
goChangePhoneAccount
=
()
=>
{
Taro
.
navigateTo
({
Taro
.
navigateTo
({
url
:
'/pages/Pass
W
ord/ChangeTelAccount'
,
url
:
'/pages/Pass
w
ord/ChangeTelAccount'
,
});
});
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment