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
d06e4b62
Commit
d06e4b62
authored
Sep 13, 2023
by
徐乐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 修改
parent
00db07f4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
25 deletions
+39
-25
reducer.js
src/containers/App/store/reducer.js
+13
-14
BasicLayout.js
src/layouts/BasicLayout.js
+11
-1
index.js
src/pages/bootpage/integration/index.js
+14
-1
login.js
src/pages/user/login/login.js
+1
-9
No files found.
src/containers/App/store/reducer.js
View file @
d06e4b62
...
...
@@ -42,9 +42,7 @@ const proxy = require('../../../../config/proxy');
const
keywordStorage
=
new
Storage
(
`__global_search_keywords__micro_
${
window
.
location
.
hostname
}
`
);
const
recentVisitedStorage
=
new
Storage
(
`__global_recent_visited__micro_
${
window
.
location
.
hostname
}
`
);
const
recentProductStorage
=
new
Storage
(
`__global__recent_product__micro_
${
window
.
location
.
hostname
}
`
);
const
currentProduct
=
`__global__recent_productIndex__micro_
${
window
.
location
.
hostname
}
_
${
params
.
getParams
(
'client'
)
||
sessionStorage
.
getItem
(
'client'
)
||
'city'
}
`
;
const
currentProduct
=
`__global__recent_productIndex__micro_
${
window
.
location
.
hostname
}
_
${
sessionStorage
.
getItem
(
'client'
)
||
params
.
getParams
(
'client'
)
||
'city'
}
`
;
sessionStorage
.
setItem
(
currentProduct
,
0
);
Cookies
.
set
(
'loginMode'
,
Cookies
.
get
(
'loginMode'
)
||
'pdw'
);
export
const
initialState
=
fromJS
({
...
...
@@ -102,27 +100,27 @@ const appReducer = (state = initialState, action) => {
const
{
homepage
}
=
window
.
globalConfig
;
const
modulePkg
=
{};
window
.
globalConfig
&&
window
.
globalConfig
.
products
&&
Array
.
isArray
(
window
.
globalConfig
.
products
)
&&
window
.
globalConfig
.
products
.
map
(
item
=>
{
modulePkg
[
item
.
PackageName
]
=
item
;
modulePkg
[
item
.
PackageName
]
=
item
;
});
config
.
widgets
=
transformWidgets
(
config
.
widgets
);
config
.
widgets
=
transformWidgets
(
config
.
widgets
);
// const pickMenus = memoized(() => )
const
generMenu
=
generMainRoutes
(
config
.
widgets
||
[],
null
,
0
,
modulePkg
);
let
flatMenu
=
[];
if
(
generMenu
)
{
const
flat
=
state
.
toJS
();
const
data
=
_
.
uniqBy
(
generFlatRoutes
(
generMenu
||
[],
null
,
null
,
modulePkg
),
'path'
);
if
(
_
.
isEqualWith
(
flat
.
flatMenu
,
data
,
(
value
,
other
)
=>
{
if
(
value
.
path
===
other
.
path
)
{
const
data
=
_
.
uniqBy
(
generFlatRoutes
(
generMenu
||
[],
null
,
null
,
modulePkg
),
'path'
);
if
(
_
.
isEqualWith
(
flat
.
flatMenu
,
data
,
(
value
,
other
)
=>
{
if
(
value
.
path
===
other
.
path
)
{
return
true
}
}))
{
flatMenu
=
data
flatMenu
=
data
}
else
{
flatMenu
=
flat
.
flatMenu
}
const
index
=
flatMenu
.
findIndex
(
item
=>
item
.
name
===
'首页'
);
if
(
index
===
-
1
)
{
if
(
index
===
-
1
)
{
flatMenu
.
push
({
path
:
`/
${
homepage
}
`
,
href
:
`/
${
homepage
}
`
,
...
...
@@ -141,7 +139,7 @@ const appReducer = (state = initialState, action) => {
return
currentPath
===
decodeURI
(
homepage
);
});
let
currentMenuIndex
=
0
;
if
(
home
)
{
...
...
@@ -204,9 +202,10 @@ const appReducer = (state = initialState, action) => {
recentVisited
:
[],
});
case
GET_CURRENT_INDEX
:
sessionStorage
.
setItem
(
currentProduct
,
action
.
data
)
const
currentProductNew
=
`__global__recent_productIndex__micro_
${
window
.
location
.
hostname
}
_
${
sessionStorage
.
getItem
(
'client'
)
||
window
.
globalConfig
?.
client
||
'city'
}
`;
sessionStorage.setItem(currentProductNew, action.data)
return state.merge({
currentMenuIndex
:
Number
(
sessionStorage
.
getItem
(
currentProduct
)),
currentMenuIndex: Number(sessionStorage.getItem(currentProduct
New
)),
});
case SLIDER_MENU_MODE:
return state.merge({
...
...
src/layouts/BasicLayout.js
View file @
d06e4b62
...
...
@@ -514,6 +514,16 @@ const Layout = props => {
}
}
else
{
let
cli
=
val
.
url
?.
indexOf
(
'client='
)
>=
0
?
val
.
url
.
split
(
'client='
)[
1
]
:
''
;
Cookies
.
set
(
'client'
,
cli
,
{
expires
:
86400000
/
(
24
*
60
*
60
*
1000
),
path
:
'/'
,
});
sessionStorage
.
setItem
(
'client'
,
cli
);
const
currentProduct
=
`__global__recent_productIndex__micro_
${
window
.
location
.
hostname
}
_
${
window
.
globalConfig
?.
client
??
'city'
}
`;
sessionStorage.removeItem(currentProduct);
const currentProductNew = `
__global__recent_productIndex__micro_$
{
window
.
location
.
hostname
}
_$
{
cli
||
'city'
}
`;
sessionStorage.setItem(currentProductNew, 0);
setIntegrationLoading(true);
const config = props.global;
config.uiwidgets = [];
...
...
@@ -523,7 +533,7 @@ const Layout = props => {
config.client = cli;
}
props.instance && props.instance.updateConfig(config);
loginAction
&&
loginAction
.
getUserInfoAndConfig
(
''
,
true
,
val
.
type
,
cli
);
loginAction && loginAction.getUserInfoAndConfig('', true, val.type);
// props.history.push(`
/
?
client
=
$
{
cli
}
`);
// props.updateCurrentIndex(0);
// defaultApp();
...
...
src/pages/bootpage/integration/index.js
View file @
d06e4b62
...
...
@@ -8,6 +8,7 @@ import { useDocumentTitle } from '@ant-design/pro-utils';
import
defaultSetting
from
'@wisdom-utils/components/lib/AppLayout/layouts/defaultSettings'
;
import
{
actionCreators
}
from
'@/containers/App/store'
;
import
LoginAction
from
'@/pages/user/login/login'
;
import
Cookies
from
'js-cookie'
;
import
{
defaultApp
}
from
'@/micro'
;
import
{
appService
}
from
'@/api'
;
import
{
SERVICE_INTERFACE_SUCCESS_CODE
}
from
'@/constants'
;
...
...
@@ -24,6 +25,7 @@ const Integration = props => {
const
[
client
,
setClient
]
=
useState
(
''
);
//子站跳转
const
handlePage
=
(
item
,
loginAction
)
=>
{
let
count
=
1
;
setPercentBottom
(
-
40
+
Math
.
ceil
(
Math
.
random
()
*
8
*
count
));
...
...
@@ -61,6 +63,17 @@ const Integration = props => {
}
}
else
{
let
cli
=
item
.
url
?.
indexOf
(
'client='
)
>=
0
?
item
.
url
.
split
(
'client='
)[
1
]
:
''
;
Cookies
.
set
(
'client'
,
cli
,
{
expires
:
86400000
/
(
24
*
60
*
60
*
1000
),
path
:
'/'
,
});
sessionStorage
.
setItem
(
'client'
,
cli
);
const
currentProduct
=
`__global__recent_productIndex__micro_
${
window
.
location
.
hostname
}
_
${
window
.
globalConfig
?.
client
??
'city'
}
`;
sessionStorage.removeItem(currentProduct);
const currentProductNew = `
__global__recent_productIndex__micro_$
{
window
.
location
.
hostname
}
_$
{
cli
||
'city'
}
`;
sessionStorage.setItem(currentProductNew, 0);
setClient(cli);
setCurrentType(item.name);
...
...
@@ -72,7 +85,7 @@ const Integration = props => {
config.client = cli
}
//
props.instance && props.instance.updateConfig(config);
props.instance && props.instance.updateConfig(config);
loginAction && loginAction.getUserInfoAndConfig('', true, item.type, cli);
}
};
...
...
src/pages/user/login/login.js
View file @
d06e4b62
...
...
@@ -930,19 +930,11 @@ class Login {
});
}
getUserInfoAndConfig
(
failCallback
,
flag
,
industry
,
client
)
{
getUserInfoAndConfig
(
failCallback
,
flag
,
industry
)
{
const
{
token
:
tk
}
=
this
.
globalConfig
;
const
token
=
tk
||
Cookies
.
get
(
'token'
);
const
site
=
Cookies
.
get
(
'site'
);
const
self
=
this
;
if
(
client
)
{
self
.
globalConfig
.
client
=
client
;
Cookies
.
set
(
'client'
,
client
,
{
expires
:
86400000
/
(
24
*
60
*
60
*
1000
),
path
:
'/'
,
});
sessionStorage
.
setItem
(
'client'
,
client
);
}
/* eslint-disable */
let
_industrySite
=
null
;
...
...
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