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
5fb162e4
Commit
5fb162e4
authored
Aug 31, 2022
by
皮倩雯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
底图方案增加最大级别配置
parent
6afc00d2
Pipeline
#58902
passed with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
179 additions
and
128 deletions
+179
-128
AddProjectModal.jsx
...ormCenter/gis/schemeConfig/TileConfig/AddProjectModal.jsx
+75
-52
BaseMap.jsx
...es/platformCenter/gis/schemeConfig/TileConfig/BaseMap.jsx
+66
-38
card.jsx
...pages/platformCenter/gis/schemeConfig/TileConfig/card.jsx
+38
-38
No files found.
src/pages/platformCenter/gis/schemeConfig/TileConfig/AddProjectModal.jsx
View file @
5fb162e4
/* eslint-disable prefer-promise-reject-errors */
/* eslint-disable indent */
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Form
,
Modal
,
Input
,
Select
,
notification
,
InputNumber
,
Tooltip
}
from
'antd'
;
import
{
Form
,
Modal
,
Input
,
Select
,
notification
,
InputNumber
,
Tooltip
,
Row
,
Col
}
from
'antd'
;
import
{
GettMaplayer
,
GetVectorService
,
...
...
@@ -59,6 +59,7 @@ const AddProjectModal = props => {
schemename
:
formObj
.
schemename
,
servicename
:
obj
.
serverName
,
zoom
:
obj
.
zoom
,
maxZoom
:
obj
.
maxzoom
,
};
SetBaseMapschemeName
(
data
)
.
then
(
res
=>
{
...
...
@@ -175,8 +176,8 @@ const AddProjectModal = props => {
form
.
resetFields
();
let
req1
=
GettMaplayer
({
terminalType
:
'base'
,
isBaseMap
:
true
});
let
req2
=
GetVectorService
();
let
pipeArr
=
[]
,
baseMap
=
[];
let
pipeArr
=
[]
;
let
baseMap
=
[];
Promise
.
all
([
req1
,
req2
]).
then
(
res
=>
{
if
(
res
[
0
].
code
==
'0'
)
{
(
res
[
0
].
data
.
general
.
baseMap
.
layers
||
[]).
map
(
item
=>
{
...
...
@@ -223,7 +224,7 @@ const AddProjectModal = props => {
title=
{
`${type === 'add' ? '添加基础底图' : '添加分级底图'}`
}
bodyStyle=
{
{
width
:
'100%'
,
minHeight
:
'100px'
}
}
style=
{
{
top
:
'150px'
}
}
width=
"
7
00px"
width=
"
6
00px"
destroyOnClose
maskClosable=
{
false
}
cancelText=
"取消"
...
...
@@ -231,46 +232,72 @@ const AddProjectModal = props => {
{
...
props
}
onOk=
{
()
=>
onSubmit
()
}
confirmLoading=
{
loading
}
forceRender
=
{
true
}
forceRender
getContainer=
{
false
}
>
{
visible
&&
(
<
Form
form=
{
form
}
{
...
layout
}
onFinish=
{
onFinish
}
>
{
type
===
'add'
?
(
<>
<
Item
label=
{
<
div
>
<
Tooltip
title=
"同一分级底图中的不同基础底图级别不能相同"
>
<
InfoCircleOutlined
style=
{
{
color
:
'rgb(24, 144, 255)'
,
marginLeft
:
'0px'
,
marginRight
:
'5px'
,
}
}
/>
</
Tooltip
>
<
span
>
级别
</
span
>
</
div
>
}
name=
"zoom"
rules=
{
[
{
required
:
true
,
message
:
'请输入级别'
},
{
validator
:
(
rule
,
value
)
=>
{
const
obj
=
form
.
getFieldsValue
().
zoom
;
console
.
log
(
obj
);
if
(
arr
.
indexOf
(
obj
)
!=
-
1
)
{
console
.
log
(
111
);
return
Promise
.
reject
(
'已存在该级别的基础底图'
);
}
return
Promise
.
resolve
();
},
},
]
}
>
<
InputNumber
min=
{
0
}
/>
</
Item
>
<
Row
>
<
Col
span=
{
14
}
>
<
Item
labelCol=
{
{
span
:
7
}
}
label=
{
<
div
>
<
Tooltip
title=
"同一分级底图中的不同基础底图级别不能相同"
>
<
InfoCircleOutlined
style=
{
{
color
:
'rgb(24, 144, 255)'
,
marginLeft
:
'0px'
,
marginRight
:
'5px'
,
}
}
/>
</
Tooltip
>
<
span
>
最小级别
</
span
>
</
div
>
}
name=
"zoom"
rules=
{
[
{
required
:
true
,
message
:
'请输入最小级别'
},
//
{
// validator: (rule, value) =>
{
// const obj = form.getFieldsValue().zoom;
// console.log(obj);
// if (arr.indexOf(obj) != -1)
{
// console.log(111);
// return Promise.reject('已存在该级别的基础底图');
//
}
// return Promise.resolve();
//
},
//
},
]
}
>
<
InputNumber
min=
{
0
}
max=
{
99
}
/>
</
Item
>
</
Col
>
<
Col
span=
{
10
}
>
<
Item
labelCol=
{
{
span
:
10
}
}
label=
"最大级别"
name=
"maxzoom"
rules=
{
[
{
validator
:
(
rule
,
value
)
=>
{
const
obj
=
form
.
getFieldsValue
().
zoom
;
const
objmax
=
form
.
getFieldsValue
().
maxzoom
;
if
(
objmax
<
obj
)
{
return
Promise
.
reject
(
'最大级别不能小于最小级别'
);
}
return
Promise
.
resolve
();
},
},
]
}
>
<
InputNumber
min=
{
0
}
max=
{
99
}
/>
</
Item
>
</
Col
>
</
Row
>
<
Item
label=
"基础底图"
name=
"serverName"
...
...
@@ -278,13 +305,11 @@ const AddProjectModal = props => {
>
<
Select
onChange=
{
handleChange
}
>
{
serviceList
.
length
?
serviceList
.
map
((
item
,
index
)
=>
{
return
(
<
Option
key=
{
index
}
value=
{
item
}
>
{
item
}
</
Option
>
);
})
?
serviceList
.
map
((
item
,
index
)
=>
(
<
Option
key=
{
index
}
value=
{
item
}
>
{
item
}
</
Option
>
))
:
''
}
</
Select
>
</
Item
>
...
...
@@ -305,13 +330,11 @@ const AddProjectModal = props => {
>
<
Select
onChange=
{
handleBaseMap
}
>
{
baseMap
.
length
?
baseMap
.
map
((
item
,
index
)
=>
{
return
(
<
Option
key=
{
index
}
value=
{
item
}
>
{
item
}
</
Option
>
);
})
?
baseMap
.
map
((
item
,
index
)
=>
(
<
Option
key=
{
index
}
value=
{
item
}
>
{
item
}
</
Option
>
))
:
''
}
</
Select
>
</
Item
>
...
...
src/pages/platformCenter/gis/schemeConfig/TileConfig/BaseMap.jsx
View file @
5fb162e4
...
...
@@ -7,7 +7,7 @@
* @LastEditors: leizhe
*/
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Form
,
Modal
,
Input
,
Select
,
notification
,
InputNumber
,
Tooltip
}
from
'antd'
;
import
{
Form
,
Modal
,
Input
,
Select
,
notification
,
InputNumber
,
Tooltip
,
Row
,
Col
}
from
'antd'
;
import
{
GettMaplayer
,
GetVectorService
,
...
...
@@ -34,7 +34,7 @@ const BaseMap = props => {
});
setArr
(
list
);
let
aa
=
keepItem
.
baseMapDetail
.
find
(
i
=>
i
.
servicename
==
keepProject
);
form
.
setFieldsValue
({
zoom
:
aa
.
zoom
});
form
.
setFieldsValue
({
zoom
:
aa
.
zoom
,
maxzoom
:
aa
.
maxzoom
});
}
else
{
form
.
resetFields
();
}
...
...
@@ -71,6 +71,7 @@ const BaseMap = props => {
schemename
:
keepItem
.
schemename
,
servicename
:
keepProject
,
zoom
:
obj
.
zoom
,
maxZoom
:
obj
.
maxzoom
,
};
SetBaseMapschemeName
(
data
).
then
(
res
=>
{
if
(
res
.
code
==
'0'
)
{
...
...
@@ -121,51 +122,78 @@ const BaseMap = props => {
title=
{
title
}
bodyStyle=
{
{
width
:
'100%'
,
minHeight
:
'100px'
}
}
style=
{
{
top
:
'150px'
}
}
width=
"
4
00px"
width=
"
6
00px"
destroyOnClose
maskClosable=
{
false
}
cancelText=
"取消"
okText=
"确认"
{
...
props
}
onOk=
{
()
=>
onSubmit
()
}
forceRender
=
{
true
}
forceRender
getContainer=
{
false
}
>
<
Form
form=
{
form
}
{
...
layout
}
onFinish=
{
onSubmit
}
>
<
Item
label=
{
<
div
>
<
Tooltip
title=
"同一分级底图中的不同基础底图级别不能相同"
>
<
InfoCircleOutlined
style=
{
{
color
:
'rgb(24, 144, 255)'
,
marginLeft
:
'0px'
,
marginRight
:
'5px'
,
}
}
/>
</
Tooltip
>
<
span
>
级别
</
span
>
</
div
>
}
style=
{
{
marginTop
:
'20px'
}
}
name=
"zoom"
rules=
{
[
{
required
:
true
,
message
:
'请输入级别'
},
{
validator
:
(
rule
,
value
)
=>
{
const
obj
=
form
.
getFieldsValue
().
zoom
;
console
.
log
(
obj
);
if
(
arr
.
indexOf
(
obj
)
!=
-
1
)
{
console
.
log
(
111
);
return
Promise
.
reject
(
'已存在该级别的基础底图'
);
}
return
Promise
.
resolve
();
},
},
]
}
>
<
InputNumber
min=
{
0
}
style=
{
{
width
:
'150px'
}
}
/>
</
Item
>
<
Row
>
<
Col
span=
{
12
}
>
<
Item
labelCol=
{
{
span
:
8
}
}
label=
{
<
div
>
<
Tooltip
title=
"同一分级底图中的不同基础底图级别不能相同"
>
<
InfoCircleOutlined
style=
{
{
color
:
'rgb(24, 144, 255)'
,
marginLeft
:
'0px'
,
marginRight
:
'5px'
,
}
}
/>
</
Tooltip
>
<
span
>
最小级别
</
span
>
</
div
>
}
style=
{
{
marginTop
:
'20px'
}
}
name=
"zoom"
rules=
{
[
{
required
:
true
,
message
:
'请输入级别'
},
//
{
// validator: (rule, value) =>
{
// const obj = form.getFieldsValue().zoom;
// console.log(obj);
// if (arr.indexOf(obj) != -1)
{
// console.log(111);
// return Promise.reject('已存在该级别的基础底图');
//
}
// return Promise.resolve();
//
},
//
},
]
}
>
<
InputNumber
min=
{
0
}
/>
</
Item
>
</
Col
>
<
Col
span=
{
12
}
>
<
Item
labelCol=
{
{
span
:
6
}
}
label=
"最大级别"
name=
"maxzoom"
style=
{
{
marginTop
:
'20px'
}
}
rules=
{
[
{
validator
:
(
rule
,
value
)
=>
{
const
obj
=
form
.
getFieldsValue
().
zoom
;
const
objmax
=
form
.
getFieldsValue
().
maxzoom
;
if
(
objmax
<
obj
)
{
return
Promise
.
reject
(
'最大级别不能小于最小级别'
);
}
return
Promise
.
resolve
();
},
},
]
}
>
<
InputNumber
min=
{
0
}
max=
{
99
}
/>
</
Item
>
</
Col
>
</
Row
>
</
Form
>
</
Modal
>
);
...
...
src/pages/platformCenter/gis/schemeConfig/TileConfig/card.jsx
View file @
5fb162e4
...
...
@@ -205,46 +205,46 @@ const CardData = props => {
</
div
>
<
div
style=
{
{
overflowY
:
'scroll'
,
height
:
'11.4rem'
}
}
>
{
props
.
item
.
baseMapDetail
&&
props
.
item
.
baseMapDetail
.
length
?
props
.
item
.
baseMapDetail
.
map
((
baseMapItem
,
baseindex
)
=>
{
return
(
<
div
className=
{
styles
.
mapItem1
}
key=
{
baseindex
}
>
<
div
// onClick=
{()
=
>
pick(props.item.schemename, baseindex)}
// className=
{
classnames
({
// [styles.defaultTile]: true,
// [styles.activeTile]: baseindex == props.item.defaultBaseMap,
//
})
}
className=
{
styles
.
defaultTile1
}
?
props
.
item
.
baseMapDetail
.
map
((
baseMapItem
,
baseindex
)
=>
(
<
div
className=
{
styles
.
mapItem1
}
key=
{
baseindex
}
>
<
div
// onClick=
{()
=
>
pick(props.item.schemename, baseindex)}
// className=
{
classnames
({
// [styles.defaultTile]: true,
// [styles.activeTile]: baseindex == props.item.defaultBaseMap,
//
})
}
className=
{
styles
.
defaultTile1
}
>
{
baseMapItem
.
maxzoom
===
0
?
baseMapItem
.
zoom
:
`${baseMapItem.zoom}~${baseMapItem.maxzoom}`
}
</
div
>
<
div
className=
{
styles
.
mapText1
}
>
<
Tooltip
title=
{
baseMapItem
.
servicename
}
>
{
baseMapItem
.
servicename
}
</
Tooltip
>
</
div
>
<
div
className=
{
styles
.
mapIcon1
}
>
<
EditOutlined
onClick=
{
()
=>
{
editBaseMap
();
setKeepItem
(
props
.
item
);
setKeepProject
(
baseMapItem
.
servicename
);
}
}
/>
</
div
>
<
div
className=
{
styles
.
mapIcon1
}
>
<
Popconfirm
title=
"是否删除该基础底图?"
okText=
"确认"
cancelText=
"取消"
onConfirm=
{
()
=>
{
deletebaseMap
(
props
.
item
,
baseMapItem
.
servicename
);
}
}
>
{
baseMapItem
.
zoom
}
</
div
>
<
div
className=
{
styles
.
mapText1
}
>
<
Tooltip
title=
{
baseMapItem
.
servicename
}
>
{
baseMapItem
.
servicename
}
</
Tooltip
>
</
div
>
<
div
className=
{
styles
.
mapIcon1
}
>
<
EditOutlined
onClick=
{
()
=>
{
editBaseMap
();
setKeepItem
(
props
.
item
);
setKeepProject
(
baseMapItem
.
servicename
);
}
}
/>
</
div
>
<
div
className=
{
styles
.
mapIcon1
}
>
<
Popconfirm
title=
"是否删除该基础底图?"
okText=
"确认"
cancelText=
"取消"
onConfirm=
{
()
=>
{
deletebaseMap
(
props
.
item
,
baseMapItem
.
servicename
);
}
}
>
<
CloseOutlined
/>
</
Popconfirm
>
{
' '
}
</
div
>
<
CloseOutlined
/>
</
Popconfirm
>
{
' '
}
</
div
>
);
}
)
</
div
>
)
)
:
''
}
</
div
>
</
Card
>
...
...
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