Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ems3.3
Project
Project
Details
Activity
Releases
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
wuhao
ems3.3
Commits
79d6f580
Commit
79d6f580
authored
Sep 19, 2023
by
wuhao
🎯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
asder
parent
6bf879ab
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
316 additions
and
250 deletions
+316
-250
config.js
config/config.js
+11
-1
proxy.js
config/proxy.js
+11
-1
index.jsx
src/components/TagView/index.jsx
+5
-3
index.jsx
src/pages/lease/costanalysis/index.jsx
+289
-245
No files found.
config/config.js
View file @
79d6f580
/*
* @Author: wuhao930406 1148547900@qq.com
* @Date: 2023-09-19 08:36:54
* @LastEditors: wuhao930406 1148547900@qq.com
* @LastEditTime: 2023-09-19 08:54:01
* @FilePath: /ems3.3/config/config.js
* @Description:
*
* Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
*/
// https://umijs.org/config/
import
{
defineConfig
}
from
'@umijs/max'
;
import
{
join
}
from
'path'
;
...
...
@@ -42,7 +52,7 @@ export default defineConfig({
publicPath
:
process
.
env
.
NODE_ENV
===
'production'
?
'./'
:
'/'
,
initialState
:
{},
model
:
{},
//
keepalive: keepalive,
keepalive
:
keepalive
,
layout
:
{
// https://umijs.org/zh-CN/plugins/plugin-layout
locale
:
false
,
...
...
config/proxy.js
View file @
79d6f580
/*
* @Author: wuhao930406 1148547900@qq.com
* @Date: 2023-09-19 08:36:54
* @LastEditors: wuhao930406 1148547900@qq.com
* @LastEditTime: 2023-09-19 08:41:04
* @FilePath: /ems3.3/config/proxy.js
* @Description:
*
* Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
*/
/**
* 在生产环境 代理是无法生效的,所以这里没有生产环境的配置
* -------------------------------
...
...
@@ -13,7 +23,7 @@ export default {
dev
:
{
[
defaultSetting
.
proxypath
]:
{
// 要代理的地址
target
:
'http://192.168.40.11
0
:8000'
,
//jf哥
target
:
'http://192.168.40.11
1
:8000'
,
//jf哥
// target: 'http://192.168.40.248:8080', //jf哥
// target: 'http://192.168.40.64:28000', //gc哥
// target: 'http://192.168.40.203:8000', //dj哥
...
...
src/components/TagView/index.jsx
View file @
79d6f580
...
...
@@ -54,7 +54,7 @@ const TagView = ({ children, home }) => {
};
// 监听路由改变
const
handleOnChange
=
(
routeContext
)
=>
{
const
handleOnChange
=
async
(
routeContext
)
=>
{
const
{
currentMenu
}
=
routeContext
;
// console.log(tagList);
// tags初始化
...
...
@@ -64,7 +64,7 @@ const TagView = ({ children, home }) => {
// 判断是否已打开过该页面
let
hasOpen
=
false
;
if
(
currentMenu
.
path
)
{
cons
t
tagsCopy
=
tagList
.
map
((
item
)
=>
{
le
t
tagsCopy
=
tagList
.
map
((
item
)
=>
{
if
(
currentMenu
?.
path
===
item
.
path
)
{
//console.log(item);
hasOpen
=
true
;
...
...
@@ -87,6 +87,8 @@ const TagView = ({ children, home }) => {
refresh
:
0
,
active
:
true
,
});
await
setrefresh
(
false
);
setrefresh
(
true
);
}
return
setTagList
(
tagsCopy
);
...
...
@@ -162,7 +164,7 @@ const TagView = ({ children, home }) => {
</
div
>
<
div
className=
{
styles
.
child
}
>
<
div
className=
{
styles
.
contianbox
}
>
<
div
style=
{
{
width
:
"100%"
,
height
:
"100%"
}
}
>
{
refresh
&&
children
}
</
div
>
<
div
style=
{
{
width
:
'100%'
,
height
:
'100%'
}
}
>
{
refresh
&&
children
}
</
div
>
</
div
>
</
div
>
</>
...
...
src/pages/lease/costanalysis/index.jsx
View file @
79d6f580
This diff is collapsed.
Click to expand it.
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