Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CivWeb
Project
Project
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
ReactWeb5
CivWeb
Commits
57fe70d2
Commit
57fe70d2
authored
Nov 26, 2021
by
邓晓峰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复client标识
parent
4db244ba
Pipeline
#38825
passed with stages
in 12 minutes 51 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
37 additions
and
22 deletions
+37
-22
proxy.js
config/proxy.js
+1
-1
app.js
src/app.js
+2
-2
AvatarDropdown.js
src/components/GlobalHeader/AvatarDropdown.js
+5
-3
ExtendPanel.js
src/components/HeaderSearch/ExtendPanel.js
+1
-1
actions.js
src/containers/App/store/actions.js
+2
-0
reducer.js
src/containers/App/store/reducer.js
+5
-3
SecurityLayout.js
src/layouts/SecurityLayout.js
+21
-12
No files found.
config/proxy.js
View file @
57fe70d2
/* eslint-disable */
// const proxyURL = process.env.NODE_ENV !== 'production' ? 'http://192.168.10.150:8777' : window.location.origin;
const
proxyURL
=
'http
s://mis.panda-water.cn
'
;
const
proxyURL
=
'http
://192.168.10.152:8076
'
;
module
.
exports
=
{
assetsRoot
:
process
.
env
.
NODE_ENV
!==
'production'
?
proxyURL
:
'./'
,
dev
:
{
...
...
src/app.js
View file @
57fe70d2
...
...
@@ -124,7 +124,7 @@ const initGlobalConfig = () => {
// eslint-disable-next-line react-hooks/rules-of-hooks
appService
.
queryConfig
({
client
:
params
.
getParams
(
'client'
)
||
Cookies
.
get
(
'city'
)
||
'city'
,
client
:
params
.
getParams
(
'client'
)
||
'city'
,
})
.
then
(
res
=>
{
if
(
res
)
{
...
...
@@ -132,7 +132,7 @@ const initGlobalConfig = () => {
if
(
!
data
.
client
)
{
data
.
client
=
params
.
getParams
(
'client'
)
||
'city'
;
}
Cookies
.
set
(
'city'
,
Cookies
.
get
(
'city'
));
//
Cookies.set('city', Cookies.get('city'));
store
.
dispatch
(
actionCreators
.
getConfig
(
Object
.
assign
({},
window
.
globalConfig
,
data
),
...
...
src/components/GlobalHeader/AvatarDropdown.js
View file @
57fe70d2
...
...
@@ -11,7 +11,7 @@ import {
Upload
,
}
from
'antd'
;
import
{
withRouter
}
from
'react-router'
;
import
Cookies
from
'js-cookie'
;
import
{
FormattedMessage
,
useIntl
,
...
...
@@ -61,7 +61,6 @@ class AvatarDropdown extends React.Component {
}
}
loginout
=
event
=>
{
debugger
// eslint-disable-next-line no-undef
this
.
props
.
logout
();
if
(
...
...
@@ -71,7 +70,10 @@ class AvatarDropdown extends React.Component {
window
.
location
.
href
=
`
${
window
.
location
.
origin
}
/#login`
;
return
false
;
}
window
.
location
.
reload
();
// console.log(this.props)
// this.props.history.push('/login')
// window.location.reload();
//
};
getRoles
=
()
=>
{
...
...
src/components/HeaderSearch/ExtendPanel.js
View file @
57fe70d2
...
...
@@ -105,7 +105,7 @@ const SearchPanel = props => {
}
const
goFeature
=
(
path
,
rect
,
value
)
=>
{
// eslint-disable-next-line no-param-reassign
debugger
value
=
value
||
props
.
value
;
const
findKeywordIndex
=
recentKeywords
.
length
>
0
...
...
src/containers/App/store/actions.js
View file @
57fe70d2
...
...
@@ -177,6 +177,8 @@ export function logout(data) {
Cookies
.
set
(
window
.
globalConfig
.
client
,
''
,
{
path
:
'/'
,
});
window
.
globalConfig
.
token
=
null
;
window
.
globalConfig
.
access_token
=
null
}
Cookies
.
set
(
'token'
,
''
,
{
...
...
src/containers/App/store/reducer.js
View file @
57fe70d2
...
...
@@ -106,7 +106,10 @@ const appReducer = (state = initialState, action) => {
modulePkg
[
item
.
PackageName
]
=
item
;
});
const
generMenu
=
generRoutes
(
config
.
widgets
||
[],
null
,
0
,
modulePkg
);
const
flatMenu
=
generFlatRoutes
(
generMenu
||
[],
null
,
null
,
modulePkg
);
let
flatMenu
=
[];
if
(
generMenu
)
{
flatMenu
=
generFlatRoutes
(
generMenu
||
[],
null
,
null
,
modulePkg
);
}
const
home
=
flatMenu
.
find
(
item
=>
{
let
path
=
item
.
path
.
split
(
"|"
);
...
...
@@ -119,7 +122,6 @@ const appReducer = (state = initialState, action) => {
let
currentMenuIndex
=
0
;
if
(
home
)
{
console
.
log
(
"home"
,
home
);
const
parent
=
home
.
level
>=
2
?
home
.
parent
.
parent
:
home
.
level
>=
3
?
home
.
parent
.
parent
.
parent
:
home
.
parent
;
if
(
parent
)
{
...
...
@@ -139,7 +141,7 @@ const appReducer = (state = initialState, action) => {
Cookies
.
set
(
'city'
,
Cookies
.
get
(
'city'
)
||
window
.
globalConfig
.
client
);
return
state
.
merge
({
globalConfig
:
config
,
menu
:
generMenu
,
menu
:
generMenu
||
[]
,
flatMenu
,
currentMenu
:
generMenu
&&
generMenu
[
state
.
currentMenuIndex
],
});
...
...
src/layouts/SecurityLayout.js
View file @
57fe70d2
import
React
from
'react'
;
import
Cookies
from
'js-cookie'
;
import
{
connect
}
from
'react-redux'
;
import
{
Redirect
}
from
'
react-router-dom
'
;
import
{
Redirect
}
from
'
@wisdom-utils/runtime
'
;
import
{
PageLoading
}
from
'@ant-design/pro-layout'
;
import
{
stringify
}
from
'querystring'
;
import
{
getBaseName
}
from
'../utils/utils'
;
import
_
from
'lodash'
;
class
SecurityLayout
extends
React
.
Component
{
state
=
{
...
...
@@ -19,25 +20,33 @@ class SecurityLayout extends React.Component {
}
render
()
{
const
{
isReady
}
=
this
.
state
;
const
{
children
,
global
,
loading
}
=
this
.
props
;
const
isLogin
=
Cookies
.
get
(
'token'
)
!==
null
&&
global
.
token
!==
null
;
const
queryString
=
stringify
({
redirect
:
window
.
location
.
href
,
});
//
const queryString = stringify({
//
redirect: window.location.href,
//
});
if
((
!
isLogin
&&
loading
)
||
!
isReady
)
{
return
<
PageLoading
/>
;
}
if
(
!
isLogin
&&
window
.
location
.
pathname
!==
`/
${
getBaseName
()}
/user/login`
)
{
if
(
_
.
isNull
(
global
.
token
)
||
(
global
.
hasGateWay
&&
_
.
isNull
(
global
.
access_token
)))
{
this
.
props
.
updateCurrentIndex
&&
this
.
props
.
updateCurrentIndex
(
0
);
return
(
<
Redirect
to
=
{
`/user/login?client=
${
global
.
client
}
&
${
queryString
}
`
}
/
>
<
Redirect
to
=
{
`/user/login?client=
${
global
.
client
}
`
}
/
>
);
}
if
((
!
isLogin
&&
loading
)
||
!
isReady
)
{
return
<
PageLoading
/>
;
}
// if (
// !isLogin &&
// window.location.pathname !== `/${getBaseName()}/user/login`
// ) {
// this.props.updateCurrentIndex && this.props.updateCurrentIndex(0);
// return (
// <Redirect to={`/user/login?client=${global.client}&${queryString}`} />
// );
// }
return
children
;
}
}
...
...
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