Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CivManage
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
CivManage
Commits
4488bb4d
Commit
4488bb4d
authored
Oct 26, 2022
by
皮倩雯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: '网关功能优化'
parent
66c1197b
Pipeline
#62466
passed with stages
Changes
5
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
420 additions
and
42 deletions
+420
-42
时间.svg
src/assets/images/icons/时间.svg
+2
-0
AddModal.jsx
src/pages/platformCenter/hostmanager/gateWay/AddModal.jsx
+16
-1
CheckModal.jsx
src/pages/platformCenter/hostmanager/gateWay/CheckModal.jsx
+314
-0
gateWay.jsx
src/pages/platformCenter/hostmanager/gateWay/gateWay.jsx
+85
-38
hostmanager.js
src/services/hostmanager/hostmanager.js
+3
-3
No files found.
src/assets/images/icons/时间.svg
0 → 100644
View file @
4488bb4d
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg
t=
"1666692888056"
class=
"icon"
viewBox=
"0 0 1024 1024"
version=
"1.1"
xmlns=
"http://www.w3.org/2000/svg"
p-id=
"4237"
data-spm-anchor-id=
"a313x.7781069.0.i7"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
width=
"200"
height=
"200"
><path
d=
"M512 85.33C276.36 85.33 85.33 276.36 85.33 512S276.36 938.67 512 938.67 938.67 747.64 938.67 512 747.64 85.33 512 85.33z m0 768c-188.21 0-341.33-153.12-341.33-341.33S323.79 170.67 512 170.67 853.33 323.79 853.33 512 700.21 853.33 512 853.33z"
p-id=
"4238"
fill=
"#1890FF"
></path><path
d=
"M512 256h-85.33v341.33h298.66V512H512z"
p-id=
"4239"
fill=
"#1890FF"
></path></svg>
\ No newline at end of file
src/pages/platformCenter/hostmanager/gateWay/AddModal.jsx
View file @
4488bb4d
...
@@ -18,7 +18,7 @@ import { InfoCircleOutlined } from '@ant-design/icons';
...
@@ -18,7 +18,7 @@ import { InfoCircleOutlined } from '@ant-design/icons';
const
{
Item
}
=
Form
;
const
{
Item
}
=
Form
;
const
AddModal
=
props
=>
{
const
AddModal
=
props
=>
{
const
{
callBackSubmit
=
()
=>
{},
type
,
pickItem
,
visible
,
onCancel
}
=
props
;
const
{
callBackSubmit
=
()
=>
{},
type
,
pickItem
,
visible
,
onCancel
,
keepData
}
=
props
;
const
[
loading
,
setLoading
]
=
useState
(
false
);
const
[
loading
,
setLoading
]
=
useState
(
false
);
const
[
current
,
setCurrent
]
=
useState
(
false
);
const
[
current
,
setCurrent
]
=
useState
(
false
);
const
[
advanced
,
setAdvanced
]
=
useState
(
0
);
const
[
advanced
,
setAdvanced
]
=
useState
(
0
);
...
@@ -26,6 +26,7 @@ const AddModal = props => {
...
@@ -26,6 +26,7 @@ const AddModal = props => {
useEffect
(()
=>
{
useEffect
(()
=>
{
if
(
visible
)
{
if
(
visible
)
{
console
.
log
(
keepData
);
if
(
type
===
'edit'
)
{
if
(
type
===
'edit'
)
{
let
aa
=
pickItem
.
methods
.
replace
(
/
\s
/g
,
''
);
let
aa
=
pickItem
.
methods
.
replace
(
/
\s
/g
,
''
);
form
.
setFieldsValue
({
form
.
setFieldsValue
({
...
@@ -298,6 +299,20 @@ const AddModal = props => {
...
@@ -298,6 +299,20 @@ const AddModal = props => {
required
:
true
,
required
:
true
,
message
:
'请输入关键字'
,
message
:
'请输入关键字'
,
},
},
{
validator
:
(
rule
,
value
)
=>
{
let
aa
=
form
.
getFieldValue
().
Key
;
if
(
type
===
'edit'
)
{
if
(
keepData
.
indexOf
(
aa
)
!==
-
1
&&
pickItem
.
key
!==
aa
)
{
return
Promise
.
reject
(
'关键字已存在'
);
}
}
else
if
(
keepData
.
indexOf
(
aa
)
!==
-
1
)
{
return
Promise
.
reject
(
'关键字已存在'
);
}
return
Promise
.
resolve
();
},
},
]
}
]
}
>
>
<
Input
allowClear
/>
<
Input
allowClear
/>
...
...
src/pages/platformCenter/hostmanager/gateWay/CheckModal.jsx
0 → 100644
View file @
4488bb4d
/* eslint-disable react/jsx-boolean-value */
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Form
,
Modal
,
Input
,
notification
,
Radio
,
InputNumber
,
Checkbox
,
Switch
,
Tooltip
,
Row
,
Col
,
}
from
'antd'
;
import
{
SaveRoutes
}
from
'@/services/hostmanager/hostmanager'
;
import
{
InfoCircleOutlined
}
from
'@ant-design/icons'
;
const
{
Item
}
=
Form
;
const
AddModal
=
props
=>
{
const
{
callBackSubmit
=
()
=>
{},
pickItem
,
visible
,
onCancel
}
=
props
;
const
[
loading
,
setLoading
]
=
useState
(
false
);
const
[
current
,
setCurrent
]
=
useState
(
false
);
const
[
advanced
,
setAdvanced
]
=
useState
(
0
);
const
[
form
]
=
Form
.
useForm
();
useEffect
(()
=>
{
if
(
visible
)
{
let
aa
=
pickItem
.
methods
.
replace
(
/
\s
/g
,
''
);
form
.
setFieldsValue
({
UpstreamPathTemplate
:
pickItem
.
upstreamPathTemplate
,
DownstreamPathTemplate
:
pickItem
.
downstreamPathTemplate
,
Methods
:
aa
.
split
(
','
),
Url
:
pickItem
.
url
,
IsAuthentication
:
pickItem
.
isAuthentication
,
Key
:
pickItem
.
key
,
Priority
:
pickItem
.
priority
,
UpstreamHost
:
pickItem
.
upstreamHost
,
AddHeasersToRequest
:
pickItem
.
addHeasersToRequest
,
UpstreamHeaderTransform
:
pickItem
.
upstreamHeaderTransform
,
DownstreamHeaderTransform
:
pickItem
.
downstreamHeaderTransform
,
Timeout
:
pickItem
.
timeout
,
QoSOptions
:
pickItem
.
qoSOptions
,
RateLimitOptions
:
pickItem
.
rateLimitOptions
,
CacheOptions
:
pickItem
.
cacheOptions
,
LoadBalancerOptions
:
pickItem
.
loadBalancerOptions
,
SecurityOptions
:
pickItem
.
securityOptions
,
RequestIdKey
:
pickItem
.
requestIdKey
,
ServiceName
:
pickItem
.
serviceName
,
ServiceNamespace
:
pickItem
.
serviceNamespace
,
DelegatingHandlers
:
pickItem
.
delegatingHandlers
,
ReRouteIsCaseSensitive
:
pickItem
.
reRouteIsCaseSensitive
,
DownstreamHttpMethod
:
pickItem
.
downstreamHttpMethod
,
});
if
(
pickItem
.
upstreamHost
||
pickItem
.
addHeasersToRequest
||
pickItem
.
upstreamHeaderTransform
||
pickItem
.
downstreamHeaderTransform
||
pickItem
.
timeout
||
pickItem
.
qoSOptions
||
pickItem
.
rateLimitOptions
||
pickItem
.
cacheOptions
||
pickItem
.
loadBalancerOptions
||
pickItem
.
securityOptions
||
pickItem
.
requestIdKey
||
pickItem
.
serviceName
||
pickItem
.
serviceNamespace
||
pickItem
.
delegatingHandlers
||
pickItem
.
reRouteIsCaseSensitive
||
pickItem
.
downstreamHttpMethod
)
{
setAdvanced
(
1
);
setCurrent
(
true
);
}
}
else
{
form
.
resetFields
();
setAdvanced
(
0
);
setCurrent
(
false
);
}
},
[
visible
]);
// 提交
const
onSubmit
=
()
=>
{
onCancel
();
};
const
layout
=
{
layout
:
'horizontal'
,
labelCol
:
{
span
:
4
},
wrapperCol
:
{
span
:
18
},
};
const
plainOptions
=
[
'GET'
,
'POST'
,
'PUT'
,
'DELETE'
];
const
change
=
(
e
,
event
)
=>
{
if
(
e
)
{
setAdvanced
(
1
);
setCurrent
(
true
);
}
else
{
setAdvanced
(
0
);
setCurrent
(
false
);
}
};
return
(
<
Modal
title=
"查看网关配置"
bodyStyle=
{
{
width
:
'100%'
,
maxHeight
:
'600px'
,
overflow
:
'scroll'
,
minHeight
:
'360px'
}
}
width=
"700px"
destroyOnClose
maskClosable=
{
false
}
okText=
"关闭"
{
...
props
}
onOk=
{
()
=>
onSubmit
()
}
confirmLoading=
{
loading
}
forceRender=
{
true
}
getContainer=
{
false
}
>
<
Form
form=
{
form
}
{
...
layout
}
>
<
Item
label=
"上游路由模板"
name=
"UpstreamPathTemplate"
rules=
{
[
{
validator
:
(
rule
,
value
)
=>
{
let
aa
=
form
.
getFieldValue
().
UpstreamPathTemplate
;
console
.
log
(
aa
.
startsWith
(
'/'
));
if
(
!
aa
.
startsWith
(
'/'
))
{
return
Promise
.
reject
(
'必须以/开头'
);
}
return
Promise
.
resolve
();
},
},
{
required
:
true
,
message
:
'请输入上游路由模板'
,
},
]
}
>
<
Input
allowClear
style=
{
{
width
:
'100%'
}
}
placeholder=
"示例:/PandaOMS/PandaOMS/{url}"
disabled
/>
</
Item
>
<
Item
label=
"下游路由模板"
name=
"DownstreamPathTemplate"
rules=
{
[
{
validator
:
(
rule
,
value
)
=>
{
let
aa
=
form
.
getFieldValue
().
DownstreamPathTemplate
;
console
.
log
(
aa
.
startsWith
(
'/'
));
if
(
!
aa
.
startsWith
(
'/'
))
{
return
Promise
.
reject
(
'必须以/开头'
);
}
return
Promise
.
resolve
();
},
},
{
required
:
true
,
message
:
'请输入下游路由模板'
,
},
]
}
>
<
Input
allowClear
placeholder=
"示例:/{url}"
disabled
/>
</
Item
>
<
Item
label=
"上游请求方式"
name=
"Methods"
rules=
{
[
{
required
:
true
,
message
:
'请选择上游请求方式'
,
},
]
}
>
<
Checkbox
.
Group
options=
{
plainOptions
}
style=
{
{
display
:
'flex'
}
}
disabled
/>
</
Item
>
<
Item
label=
"下游服务地址"
name=
"Url"
rules=
{
[
{
required
:
true
,
message
:
'请输入下游服务地址'
,
},
]
}
>
<
Input
allowClear
placeholder=
"示例:http://localhost:8050"
disabled
/>
</
Item
>
<
Item
label=
"身份认证"
name=
"IsAuthentication"
>
<
Radio
.
Group
>
<
Radio
value=
{
true
}
disabled
>
开启
</
Radio
>
<
Radio
value=
{
false
}
disabled
>
关闭
</
Radio
>
</
Radio
.
Group
>
</
Item
>
<
Item
label=
"关键字"
name=
"Key"
rules=
{
[
{
required
:
true
,
message
:
'请输入关键字'
,
},
]
}
>
<
Input
allowClear
disabled
/>
</
Item
>
<
Row
>
<
Col
span=
{
8
}
>
<
Item
// label={
// <div>
// <Tooltip title="0默认级别最低,10最高,优先级越高越先匹配">
// <InfoCircleOutlined
// style={{
// color: 'rgb(24, 144, 255)',
// marginLeft: '0px',
// marginRight: '5px',
// }}
// />
// </Tooltip>
// <span>优先级</span>
// </div>
// }
label=
"优先级"
name=
"Priority"
labelCol=
{
{
span
:
12
}
}
>
<
InputNumber
min=
{
0
}
max=
{
10
}
defaultValue=
{
0
}
disabled
/>
</
Item
>
</
Col
>
<
Col
span=
{
16
}
>
<
Item
>
<
span
style=
{
{
color
:
'red'
}
}
>
0默认级别最低,10最高,优先级越高越先匹配
</
span
>
</
Item
>
</
Col
>
</
Row
>
{
/* <Switch
checkedChildren="高级设置"
unCheckedChildren="高级设置"
onChange={change}
checked={current}
style={{ marginLeft: '40px', marginBottom: '15px' }}
/>
{advanced === 1 ? (
<>
<Item label="上游host" name="UpstreamHost">
<Input allowClear />
</Item>
<Item label="头部信息" name="AddHeasersToRequest">
<Input allowClear />
</Item>
<Item label="上游头信息转发" name="UpstreamHeaderTransform">
<Input allowClear />
</Item>
<Item label="下游头信息转发" name="DownstreamHeaderTransform">
<Input allowClear />
</Item>
<Item label="超时设置" name="Timeout">
<Input allowClear />
</Item>
<Item label="服务质量与熔断" name="QoSOptions">
<Input allowClear />
</Item>
<Item label="限流配置" name="RateLimitOptions">
<Input allowClear />
</Item>
<Item label="缓存" name="CacheOptions">
<Input allowClear />
</Item>
<Item label="负载均衡" name="LoadBalancerOptions">
<Input allowClear />
</Item>
<Item label="安全配置" name="SecurityOptions">
<Input allowClear />
</Item>
<Item label="请求Id Key" name="RequestIdKey">
<Input allowClear />
</Item>
<Item label="服务名" name="ServiceName">
<Input allowClear />
</Item>
<Item label="服务空间" name="ServiceNamespace">
<Input allowClear />
</Item>
<Item label="委托配置" name="DelegatingHandlers">
<Input allowClear />
</Item>
<Item label="路由大小写敏感" name="ReRouteIsCaseSensitive">
<Radio.Group>
<Radio value={0}>否</Radio>
<Radio value={1}>是</Radio>
</Radio.Group>
</Item>
<Item label="下游请求方式" name="DownstreamHttpMethod">
<Checkbox.Group options={plainOptions} />
</Item>
</>
) : (
''
)} */
}
</
Form
>
</
Modal
>
);
};
export
default
AddModal
;
src/pages/platformCenter/hostmanager/gateWay/gateWay.jsx
View file @
4488bb4d
...
@@ -17,6 +17,7 @@ import {
...
@@ -17,6 +17,7 @@ import {
Popconfirm
,
Popconfirm
,
Table
,
Table
,
notification
,
notification
,
Tag
,
}
from
'antd'
;
}
from
'antd'
;
import
{
import
{
EditTwoTone
,
EditTwoTone
,
...
@@ -37,6 +38,7 @@ import { get, PUBLISH_SERVICE } from '@/services/index';
...
@@ -37,6 +38,7 @@ import { get, PUBLISH_SERVICE } from '@/services/index';
import
configuration
from
'../../../../assets/images/icons/消息.svg'
;
import
configuration
from
'../../../../assets/images/icons/消息.svg'
;
import
AddModal
from
'./AddModal'
;
import
AddModal
from
'./AddModal'
;
import
CheckModal
from
'./CheckModal'
;
const
GateConfig
=
()
=>
{
const
GateConfig
=
()
=>
{
const
[
loading
,
setLoading
]
=
useState
(
false
);
// 加载
const
[
loading
,
setLoading
]
=
useState
(
false
);
// 加载
...
@@ -49,8 +51,10 @@ const GateConfig = () => {
...
@@ -49,8 +51,10 @@ const GateConfig = () => {
const
[
searchWord
,
setSearchWord
]
=
useState
(
''
);
// 关键字
const
[
searchWord
,
setSearchWord
]
=
useState
(
''
);
// 关键字
const
[
searchWord1
,
setSearchWord1
]
=
useState
(
''
);
// 关键字
const
[
searchWord1
,
setSearchWord1
]
=
useState
(
''
);
// 关键字
const
[
addVisible
,
setAddVisible
]
=
useState
(
false
);
const
[
addVisible
,
setAddVisible
]
=
useState
(
false
);
const
[
checkVisible
,
setCheckVisible
]
=
useState
(
false
);
const
[
pickItem
,
setPickItem
]
=
useState
(
''
);
const
[
pickItem
,
setPickItem
]
=
useState
(
''
);
const
[
type
,
setType
]
=
useState
(
''
);
const
[
type
,
setType
]
=
useState
(
''
);
const
[
keepData
,
setKeepData
]
=
useState
([]);
// 保存关键字
const
{
Search
}
=
Input
;
const
{
Search
}
=
Input
;
const
OperateNginx
=
checked
=>
{
const
OperateNginx
=
checked
=>
{
...
@@ -112,17 +116,6 @@ const GateConfig = () => {
...
@@ -112,17 +116,6 @@ const GateConfig = () => {
if
(
res
.
code
===
0
)
{
if
(
res
.
code
===
0
)
{
setCurrentConfig
(
res
.
data
);
setCurrentConfig
(
res
.
data
);
console
.
log
(
currentConfig
);
console
.
log
(
currentConfig
);
if
(
res
.
data
)
{
GetReRoutes
({
UpstreamPathTemplate
:
''
,
key
:
''
,
}).
then
(
resdata
=>
{
setLoading
(
false
);
if
(
resdata
.
code
===
0
)
{
setTableData
(
resdata
.
data
);
}
});
}
}
}
});
});
// .catch(err => {
// .catch(err => {
...
@@ -140,9 +133,52 @@ const GateConfig = () => {
...
@@ -140,9 +133,52 @@ const GateConfig = () => {
// }
// }
// });
// });
// });
// });
// if (res.data) {
GetReRoutes
({
UpstreamPathTemplate
:
''
,
key
:
''
,
}).
then
(
resdata
=>
{
setLoading
(
false
);
if
(
resdata
.
code
===
0
)
{
console
.
log
(
resdata
.
data
);
let
data
=
[];
resdata
.
data
.
map
(
i
=>
{
data
.
push
(
i
.
key
);
});
setKeepData
(
data
);
setTableData
(
resdata
.
data
);
}
});
// }
},
[
flag
]);
},
[
flag
]);
const
columns
=
[
const
columns
=
[
{
title
:
'关键字'
,
dataIndex
:
'key'
,
key
:
'key'
,
align
:
'center'
,
width
:
150
,
render
:
(
text
,
record
)
=>
{
if
(
record
.
key
===
'CityServer'
)
{
return
(
<
Tooltip
placement=
"top"
title=
{
text
}
>
<
span
>
{
searchStyle1
(
text
)
}
<
Tag
color=
"cyan"
>
万能模板
</
Tag
>
</
span
>
</
Tooltip
>
);
}
else
{
return
(
<
span
>
<
Tooltip
placement=
"top"
title=
{
text
}
>
{
searchStyle1
(
text
)
}
</
Tooltip
>
</
span
>
);
}
},
},
{
{
title
:
'上游路由模板'
,
title
:
'上游路由模板'
,
dataIndex
:
'upstreamPathTemplate'
,
dataIndex
:
'upstreamPathTemplate'
,
...
@@ -178,7 +214,7 @@ const GateConfig = () => {
...
@@ -178,7 +214,7 @@ const GateConfig = () => {
key
:
'url'
,
key
:
'url'
,
align
:
'center'
,
align
:
'center'
,
ellipsis
:
true
,
ellipsis
:
true
,
width
:
2
5
0
,
width
:
2
0
0
,
render
:
(
text
,
record
)
=>
(
render
:
(
text
,
record
)
=>
(
<
span
>
<
span
>
<
Tooltip
placement=
"top"
title=
{
text
}
>
<
Tooltip
placement=
"top"
title=
{
text
}
>
...
@@ -201,20 +237,6 @@ const GateConfig = () => {
...
@@ -201,20 +237,6 @@ const GateConfig = () => {
</
span
>
</
span
>
),
),
},
},
{
title
:
'关键字'
,
dataIndex
:
'key'
,
key
:
'key'
,
align
:
'center'
,
width
:
100
,
render
:
(
text
,
record
)
=>
(
<
span
>
<
Tooltip
placement=
"top"
title=
{
text
}
>
{
searchStyle1
(
text
)
}
</
Tooltip
>
</
span
>
),
},
{
{
title
:
'开启身份认证'
,
title
:
'开启身份认证'
,
dataIndex
:
'isAuthentication'
,
dataIndex
:
'isAuthentication'
,
...
@@ -223,9 +245,9 @@ const GateConfig = () => {
...
@@ -223,9 +245,9 @@ const GateConfig = () => {
width
:
120
,
width
:
120
,
render
:
(
text
,
record
)
=>
{
render
:
(
text
,
record
)
=>
{
if
(
text
==
true
)
{
if
(
text
==
true
)
{
return
<
span
>
是
</
span
>;
return
<
Tag
color=
"#87d068"
>
是
</
Tag
>;
}
else
{
}
else
{
return
<
span
>
否
</
span
>;
return
<
Tag
color=
"#2db7f5"
>
否
</
Tag
>;
}
}
},
},
},
},
...
@@ -250,7 +272,9 @@ const GateConfig = () => {
...
@@ -250,7 +272,9 @@ const GateConfig = () => {
key
:
'action'
,
key
:
'action'
,
width
:
100
,
width
:
100
,
align
:
'center'
,
align
:
'center'
,
render
:
record
=>
(
render
:
record
=>
{
if
(
record
.
key
!=
'CityServer'
)
{
return
(
<
Space
size=
"middle"
>
<
Space
size=
"middle"
>
<
Tooltip
title=
"编辑"
>
<
Tooltip
title=
"编辑"
>
<
EditTwoTone
onClick=
{
()
=>
edit
(
record
)
}
style=
{
{
fontSize
:
'16px'
}
}
/>
<
EditTwoTone
onClick=
{
()
=>
edit
(
record
)
}
style=
{
{
fontSize
:
'16px'
}
}
/>
...
@@ -272,7 +296,17 @@ const GateConfig = () => {
...
@@ -272,7 +296,17 @@ const GateConfig = () => {
</
Popconfirm
>
</
Popconfirm
>
</
Tooltip
>
</
Tooltip
>
</
Space
>
</
Space
>
),
);
}
else
{
return
(
<
Space
size=
"middle"
>
<
Tooltip
title=
"查看"
>
<
SearchOutlined
onClick=
{
()
=>
look
(
record
)
}
style=
{
{
fontSize
:
'16px'
}
}
/>
</
Tooltip
>
</
Space
>
);
}
},
},
},
];
];
...
@@ -352,6 +386,11 @@ const GateConfig = () => {
...
@@ -352,6 +386,11 @@ const GateConfig = () => {
setAddVisible
(
true
);
setAddVisible
(
true
);
};
};
const
look
=
e
=>
{
setPickItem
(
e
);
setCheckVisible
(
true
);
};
const
dele
=
e
=>
{
const
dele
=
e
=>
{
setPickItem
(
e
);
setPickItem
(
e
);
let
data
=
[];
let
data
=
[];
...
@@ -417,7 +456,7 @@ const GateConfig = () => {
...
@@ -417,7 +456,7 @@ const GateConfig = () => {
marginLeft
:
'35px'
,
marginLeft
:
'35px'
,
}
}
}
}
>
>
网关
开启
网关
状态
<
Switch
<
Switch
checkedChildren=
"开启"
checkedChildren=
"开启"
unCheckedChildren=
"关闭"
unCheckedChildren=
"关闭"
...
@@ -428,7 +467,11 @@ const GateConfig = () => {
...
@@ -428,7 +467,11 @@ const GateConfig = () => {
</
div
>
</
div
>
{
console
.
log
(
currentConfig
)
}
{
console
.
log
(
currentConfig
)
}
</
div
>
</
div
>
{
currentConfig
?
(
{
/* {currentConfig ? (
) : (
<></>
)} */
}
<
div
className=
{
styles
.
head1
}
>
<
div
className=
{
styles
.
head1
}
>
<
span
>
快速搜索上游路由模板:
</
span
>
<
span
>
快速搜索上游路由模板:
</
span
>
<
Input
<
Input
...
@@ -467,11 +510,12 @@ const GateConfig = () => {
...
@@ -467,11 +510,12 @@ const GateConfig = () => {
新增
新增
</
Button
>
</
Button
>
</
div
>
</
div
>
</
div
>
{
/* {currentConfig ? (
) : (
) : (
<></>
<></>
)
}
)} */
}
</
div
>
{
currentConfig
?
(
<
Spin
spinning=
{
loading
}
tip=
"loading"
>
<
Spin
spinning=
{
loading
}
tip=
"loading"
>
<
div
className=
{
styles
.
table
}
>
<
div
className=
{
styles
.
table
}
>
<
Table
<
Table
...
@@ -497,17 +541,20 @@ const GateConfig = () => {
...
@@ -497,17 +541,20 @@ const GateConfig = () => {
/>
/>
</
div
>
</
div
>
</
Spin
>
</
Spin
>
)
:
(
<></>
)
}
<
AddModal
<
AddModal
visible=
{
addVisible
}
visible=
{
addVisible
}
pickItem=
{
pickItem
}
pickItem=
{
pickItem
}
keepData=
{
keepData
}
onCancel=
{
()
=>
setAddVisible
(
false
)
}
onCancel=
{
()
=>
setAddVisible
(
false
)
}
type=
{
type
}
type=
{
type
}
callBackSubmit=
{
onSubmit
}
callBackSubmit=
{
onSubmit
}
/>
/>
<
CheckModal
visible=
{
checkVisible
}
pickItem=
{
pickItem
}
onCancel=
{
()
=>
setCheckVisible
(
false
)
}
/>
</
Card
>
</
Card
>
</
div
>
</
div
>
);
);
...
...
src/services/hostmanager/hostmanager.js
View file @
4488bb4d
...
@@ -54,9 +54,9 @@ export const GetGateWay = param => get(`${PUBLISH_SERVICE}/HostManager/GetGateWa
...
@@ -54,9 +54,9 @@ export const GetGateWay = param => get(`${PUBLISH_SERVICE}/HostManager/GetGateWa
export
const
UpdateGeteWay
=
param
=>
get
(
`
${
PUBLISH_SERVICE
}
/HostManager/UpdateGeteWay`
,
param
);
export
const
UpdateGeteWay
=
param
=>
get
(
`
${
PUBLISH_SERVICE
}
/HostManager/UpdateGeteWay`
,
param
);
// 网关配置
// 网关配置
// export const GetReRoutesFirst = param => get(`/OcelotSettings/GetReRoutes`, param);
// export const GetReRoutesFirst = param => get(`/OcelotSettings/GetReRoutes`, param);
export
const
GetReRoutes
=
param
=>
get
(
`/OcelotSettings/GetReRoutes`
,
param
);
export
const
GetReRoutes
=
param
=>
get
(
`/
PandaCore/GateWay/
OcelotSettings/GetReRoutes`
,
param
);
export
const
SaveRoutes
=
param
=>
post
(
`/OcelotSettings/SaveRoutes`
,
param
);
export
const
SaveRoutes
=
param
=>
post
(
`/
PandaCore/GateWay/
OcelotSettings/SaveRoutes`
,
param
);
export
const
DelRoutes
=
param
=>
get
(
`/OcelotSettings/DelRoutes`
,
param
);
export
const
DelRoutes
=
param
=>
get
(
`/
PandaCore/GateWay/
OcelotSettings/DelRoutes`
,
param
);
// 代理服务老接口
// 代理服务老接口
export
const
GetNginxConfigInfoOLD
=
param
=>
export
const
GetNginxConfigInfoOLD
=
param
=>
...
...
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