Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wx-app-hairDryer
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-app-hairDryer
Commits
69d9c5c4
Commit
69d9c5c4
authored
Feb 22, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into 'test'
Develop See merge request
!1
parents
b48daa1f
4aa3a029
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
21 deletions
+26
-21
App.js
src/containers/App.js
+3
-12
EquipmentTest.js
src/containers/Equipment/EquipmentTest.js
+1
-1
index.js
src/containers/Equipment/index.js
+1
-1
index.js
src/containers/Login/index.js
+0
-1
index.js
src/containers/TestWater/index.js
+1
-1
userinfo-context.js
src/context/userinfo-context.js
+20
-5
No files found.
src/containers/App.js
View file @
69d9c5c4
import
React
,
{
useState
}
from
'react'
;
import
{
Switch
,
Route
}
from
'react-router-dom'
;
import
UserInfoContext
,
{
initUserinfo
}
from
'../context/userinfo-context'
;
import
{
UserProvider
}
from
'../context/userinfo-context'
;
import
NavBar
from
'../components/NavBar'
;
import
Index
from
'./Index/Index'
;
...
...
@@ -11,19 +11,10 @@ import BindEquipment from './BindEquipment';
import
NoMatch
from
'./NoMatch'
;
function
App
()
{
const
[
userinfo
,
setUserinfo
]
=
useState
(
initUserinfo
);
const
[
title
,
setTitle
]
=
useState
(
'多彩运维'
);
return
(
<
div
className
=
'App'
>
<
UserInfoContext
.
Provider
value
=
{{
userinfo
:
userinfo
,
updateUserInfo
:
val
=>
setUserinfo
({
...
userinfo
,
...
val
,
}),
}}
>
<
UserProvider
>
<
Route
render
=
{
props
=>
<
NavBar
{...
props
}
title
=
{
title
}
/>} /
>
<
Switch
>
<
Route
...
...
@@ -49,7 +40,7 @@ function App() {
/>
<
Route
component
=
{
NoMatch
}
/
>
<
/Switch
>
<
/User
InfoContext.
Provider
>
<
/UserProvider
>
<
/div
>
);
}
...
...
src/containers/Equipment/EquipmentTest.js
View file @
69d9c5c4
...
...
@@ -105,7 +105,7 @@ class EquipmentTest extends Component {
<
i
className
=
'linkIcon'
>
<
img
src
=
{
testIcon
}
alt
=
''
/>
<
/i
>
<
span
>
测试
放水
<
/span
>
<
span
>
测试
吹风
<
/span
>
<
/div
>
<
/div
>
<
/div
>
...
...
src/containers/Equipment/index.js
View file @
69d9c5c4
...
...
@@ -48,7 +48,7 @@ export class Index extends React.Component {
<
i
className
=
'linkIcon'
>
<
img
src
=
{
testIcon
}
alt
=
''
/>
<
/i
>
<
span
>
测试
放水
<
/span
>
<
span
>
测试
吹风
<
/span
>
<
/Link
>
<
Link
className
=
'linkItem'
...
...
src/containers/Login/index.js
View file @
69d9c5c4
...
...
@@ -21,7 +21,6 @@ export class Index extends React.Component {
}
componentWillMount
()
{
console
.
log
(
this
.
props
);
const
{
setTitle
,
updateUserInfo
}
=
this
.
props
;
setTitle
(
'登陆'
);
const
{
code
}
=
this
.
props
;
...
...
src/containers/TestWater/index.js
View file @
69d9c5c4
...
...
@@ -20,7 +20,7 @@ export class Index extends React.Component {
componentWillMount
()
{
const
{
setTitle
}
=
this
.
props
;
setTitle
(
'测试
放水
'
);
setTitle
(
'测试
吹风
'
);
}
componentDidMount
()
{
this
.
createBarcode
();
...
...
src/context/userinfo-context.js
View file @
69d9c5c4
import
React
from
'react'
;
import
React
,
{
createContext
,
useState
}
from
'react'
;
function
is_weixn
()
{
var
ua
=
navigator
.
userAgent
.
toLowerCase
();
...
...
@@ -21,9 +21,24 @@ export const initUserinfo = {
},
};
export
const
UserContext
=
React
.
createContext
({
userinfo
:
initUserinfo
,
updateUserInfo
:
()
=>
{},
});
export
const
UserContext
=
createContext
();
export
const
UserProvider
=
props
=>
{
const
[
userinfo
,
setUserinfo
]
=
useState
(
initUserinfo
);
return
(
<
UserContext
.
Provider
value
=
{{
userinfo
:
userinfo
,
updateUserInfo
:
val
=>
setUserinfo
({
...
userinfo
,
...
val
,
}),
}}
>
{
props
.
children
}
<
/UserContext.Provider
>
);
};
export
default
UserContext
;
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