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
91eb8cd1
Commit
91eb8cd1
authored
Jan 07, 2021
by
Maofei94
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fix
parent
480d52bf
Pipeline
#21907
skipped with stages
Changes
12
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
149 additions
and
95 deletions
+149
-95
context.js
src/components/Upload/context.js
+2
-8
AddForm.jsx
src/pages/mobileConfig/menuconfig/AddForm.jsx
+7
-7
addForm.less
src/pages/mobileConfig/menuconfig/addForm.less
+1
-1
checkBox.jsx
src/pages/mobileConfig/menuconfig/checkBox.jsx
+25
-20
checkBox.less
src/pages/mobileConfig/menuconfig/checkBox.less
+15
-3
editForm.jsx
src/pages/mobileConfig/menuconfig/editForm.jsx
+7
-7
AddForm.jsx
src/pages/webConfig/menuconfig/AddForm.jsx
+22
-13
addForm.less
src/pages/webConfig/menuconfig/addForm.less
+7
-0
checkBox.jsx
src/pages/webConfig/menuconfig/checkBox.jsx
+24
-22
checkBox.less
src/pages/webConfig/menuconfig/checkBox.less
+13
-2
editForm.jsx
src/pages/webConfig/menuconfig/editForm.jsx
+21
-12
index.js
src/services/index.js
+5
-0
No files found.
src/components/Upload/context.js
View file @
91eb8cd1
...
...
@@ -31,15 +31,9 @@ const PictureWallProvider = props => {
const
updateDicName
=
()
=>
{
getSysConfigurate
().
then
(
res
=>
{
if
(
res
.
getMe
&&
(
res
.
getMe
[
0
]
===
1
||
res
.
getMe
[
0
]
===
'1'
))
{
window
.
DicNameSERVICE
=
{
CITY_SERVICE
:
'/Publish/GateWay/OMS'
,
PUBLISH_SERVICE
:
'/Publish/GateWay/CityServer'
,
};
window
.
DicNameSERVICE
=
'publish'
;
}
else
{
window
.
DicNameSERVICE
=
{
CITY_SERVICE
:
'/Cityinterface/rest/services'
,
PUBLISH_SERVICE
:
'/Publish/OMS'
,
};
window
.
DicNameSERVICE
=
''
;
}
});
};
...
...
src/pages/mobileConfig/menuconfig/AddForm.jsx
View file @
91eb8cd1
...
...
@@ -49,19 +49,19 @@ const AddForm = props => {
onFinish=
{
finish
}
>
<
Item
label=
"
分
组名称"
label=
"
菜单
组名称"
name=
"menuName"
rules=
{
[
{
required
:
true
,
message
:
'请输入
分
组名称'
,
message
:
'请输入
菜单
组名称'
,
},
]
}
>
<
Input
/>
<
Input
placeholder=
"请输入菜单组名称"
/>
</
Item
>
<
Item
label=
"
分
组别名"
name=
"shortName"
>
<
Input
/>
<
Item
label=
"
菜单
组别名"
name=
"shortName"
>
<
Input
placeholder=
"请输入菜单组别名"
/>
</
Item
>
{
addType
===
1
&&
(
<
Item
...
...
@@ -94,12 +94,12 @@ const AddForm = props => {
{
addType
===
2
&&
(
<
Item
label=
"
分
组图标"
label=
"
菜单
组图标"
name=
"imageUrl"
rules=
{
[
{
required
:
true
,
message
:
'请选择
分
组图标'
,
message
:
'请选择
菜单
组图标'
,
},
]
}
>
...
...
src/pages/mobileConfig/menuconfig/addForm.less
View file @
91eb8cd1
.formStyle{
margin-bottom:
2
0px;
margin-bottom:
4
0px;
// height: 100%;
// overflow-y: scroll;
}
...
...
src/pages/mobileConfig/menuconfig/checkBox.jsx
View file @
91eb8cd1
...
...
@@ -43,28 +43,33 @@ const CheckList = props => {
return
(
<
div
>
{
nodeType
===
3
||
nodeType
===
4
?
(
<
div
className=
{
styles
.
box
}
>
{
/* <Checkbox>全选/反选</Checkbox> */
}
<>
<
div
className=
{
styles
.
boxtitle
}
>
<
span
className=
{
styles
.
boxspan
}
>
关联角色
</
span
>
</
div
>
<
div
className=
{
styles
.
box
}
>
{
/* <Checkbox>全选/反选</Checkbox> */
}
{
list
&&
list
.
length
>
0
&&
list
.
map
(
item
=>
(
<
div
key=
{
item
.
relatedRoleCode
}
className=
{
styles
.
check
}
title=
{
item
.
relatedRoleName
}
>
<
Checkbox
checked=
{
item
.
related
}
onChange=
{
e
=>
{
handleSelect
(
e
,
item
.
relatedRoleCode
);
}
}
{
list
&&
list
.
length
>
0
&&
list
.
map
(
item
=>
(
<
div
key=
{
item
.
relatedRoleCode
}
className=
{
styles
.
check
}
title=
{
item
.
relatedRoleName
}
>
{
item
.
relatedRoleName
}
</
Checkbox
>
</
div
>
))
}
</
div
>
<
Checkbox
checked=
{
item
.
related
}
onChange=
{
e
=>
{
handleSelect
(
e
,
item
.
relatedRoleCode
);
}
}
>
{
item
.
relatedRoleName
}
</
Checkbox
>
</
div
>
))
}
</
div
>
</>
)
:
(
<
Empty
image=
{
Empty
.
PRESENTED_IMAGE_SIMPLE
}
/>
)
}
...
...
src/pages/mobileConfig/menuconfig/checkBox.less
View file @
91eb8cd1
.box{
display: flex;
padding: 20px;
margin: 20px;
padding: 20px;
flex-wrap: wrap;
border: 1px solid #bfbfbf;
border: 1px solid #d9d9d9;
width: 93%;
margin-left: 3%;
margin-bottom: 20px;
}
.boxtitle{
position: relative;
top: 10px;
margin-left: 5%;
}
.boxspan{
font-weight: bold;
background-color: #fff;
padding: 0 5px;
}
.check{
flex-shrink: 0;
...
...
src/pages/mobileConfig/menuconfig/editForm.jsx
View file @
91eb8cd1
...
...
@@ -65,19 +65,19 @@ const EditForm = props => {
onFinish=
{
onFinish
}
>
<
Item
label=
"
分
组名称"
label=
"
菜单
组名称"
name=
"menuName"
rules=
{
[
{
required
:
true
,
message
:
'请输入
分
组名称'
,
message
:
'请输入
菜单
组名称'
,
},
]
}
>
<
Input
/>
<
Input
placeholder=
"请输入菜单组名称"
/>
</
Item
>
<
Item
label=
"
分
组别名"
name=
"shortName"
>
<
Input
/>
<
Item
label=
"
菜单
组别名"
name=
"shortName"
>
<
Input
placeholder=
"请输入菜单组别名"
/>
</
Item
>
{
nodeType
===
1
&&
(
<
Item
...
...
@@ -110,12 +110,12 @@ const EditForm = props => {
{
nodeType
===
2
&&
(
<
Item
label=
"
分
组图标"
label=
"
菜单
组图标"
name=
"imageUrl"
rules=
{
[
{
required
:
true
,
message
:
'请选择
分
组图标'
,
message
:
'请选择
菜单
组图标'
,
},
]
}
>
...
...
src/pages/webConfig/menuconfig/AddForm.jsx
View file @
91eb8cd1
...
...
@@ -50,14 +50,14 @@ const AddForm = props => {
rules=
{
[
{
required
:
true
,
message
:
'请输入
分组
名称'
,
message
:
'请输入
菜单
名称'
,
},
]
}
>
<
Input
/>
<
Input
placeholder=
"请输入菜单名称"
/>
</
Item
>
<
Item
label=
"菜单别名"
name=
"shortName"
>
<
Input
/>
<
Input
placeholder=
"请输入菜单别名"
/>
</
Item
>
<
Item
label=
"菜单图标"
...
...
@@ -65,14 +65,23 @@ const AddForm = props => {
rules=
{
[
{
required
:
true
,
message
:
'请选择
在线
图标'
,
message
:
'请选择
菜单
图标'
,
},
]
}
>
<
PicturesWall
/>
</
Item
>
<
Item
label=
"功能路径"
name=
"pageUrl"
>
<
Input
/>
<
Item
label=
"功能路径"
name=
"pageUrl"
rules=
{
[
{
required
:
true
,
message
:
'请输入功能路径'
,
},
]
}
>
<
Input
placeholder=
"请输入功能路径"
/>
</
Item
>
<
Item
label=
"配置文件"
name=
"config"
>
<
EditeConfigWrapper
>
...
...
@@ -109,27 +118,27 @@ const AddForm = props => {
className=
{
styles
.
formStyle
}
>
<
Item
label=
"菜单名称"
label=
"菜单
组
名称"
name=
"menuName"
rules=
{
[
{
required
:
true
,
message
:
'请输入菜单名称'
,
message
:
'请输入菜单
组
名称'
,
},
]
}
>
<
Input
/>
<
Input
placeholder=
"请输入菜单组名称"
/>
</
Item
>
<
Item
label=
"菜单别名"
name=
"shortName"
>
<
Input
/>
<
Item
label=
"菜单
组
别名"
name=
"shortName"
>
<
Input
placeholder=
"请输入菜单组别名"
/>
</
Item
>
<
Item
label=
"菜单图标"
label=
"菜单
组
图标"
name=
"imageUrl"
rules=
{
[
{
required
:
true
,
message
:
'请选择菜单图标'
,
message
:
'请选择菜单
组
图标'
,
},
]
}
>
...
...
src/pages/webConfig/menuconfig/addForm.less
View file @
91eb8cd1
.formStyle{
margin-bottom: 40px;
}
.rolebox{
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
}
\ No newline at end of file
src/pages/webConfig/menuconfig/checkBox.jsx
View file @
91eb8cd1
...
...
@@ -5,7 +5,6 @@ const CheckList = props => {
const
{
info
,
valueCallback
,
nodeType
}
=
props
;
const
[
list
,
setList
]
=
useState
([]);
const
[
flag
,
setFlag
]
=
useState
(
false
);
console
.
log
(
info
,
'info'
);
useEffect
(()
=>
{
if
(
info
.
pageUrl
)
{
let
arr
=
[...
info
.
relatedRoleList
];
...
...
@@ -36,28 +35,31 @@ const CheckList = props => {
return
(
<
div
>
{
nodeType
===
1
?
(
<
div
className=
{
styles
.
box
}
>
{
/* <Checkbox>全选/反选</Checkbox> */
}
{
list
&&
list
.
length
>
0
&&
list
.
map
(
item
=>
(
<
div
key=
{
item
.
relatedRoleCode
}
className=
{
styles
.
check
}
title=
{
item
.
relatedRoleName
}
>
<
Checkbox
checked=
{
item
.
related
}
onChange=
{
e
=>
{
handleSelect
(
e
,
item
.
relatedRoleCode
);
}
}
<>
<
div
className=
{
styles
.
boxtitle
}
>
<
span
className=
{
styles
.
boxspan
}
>
关联角色
</
span
>
</
div
>
<
div
className=
{
styles
.
box
}
>
{
list
&&
list
.
length
>
0
&&
list
.
map
(
item
=>
(
<
div
key=
{
item
.
relatedRoleCode
}
className=
{
styles
.
check
}
title=
{
item
.
relatedRoleName
}
>
{
item
.
relatedRoleName
}
</
Checkbox
>
</
div
>
))
}
</
div
>
<
Checkbox
checked=
{
item
.
related
}
onChange=
{
e
=>
{
handleSelect
(
e
,
item
.
relatedRoleCode
);
}
}
>
{
item
.
relatedRoleName
}
</
Checkbox
>
</
div
>
))
}
</
div
>
</>
)
:
(
<
Empty
image=
{
Empty
.
PRESENTED_IMAGE_SIMPLE
}
/>
)
}
...
...
src/pages/webConfig/menuconfig/checkBox.less
View file @
91eb8cd1
.box{
display: flex;
padding: 20px;
margin: 20px;
flex-wrap: wrap;
border: 1px solid #bfbfbf;
border: 1px solid #d9d9d9;
width: 93%;
margin-left: 3%;
}
.boxtitle{
position: relative;
top: 10px;
margin-left: 5%;
}
.boxspan{
font-weight: bold;
background-color: #fff;
padding: 0 5px;
}
.check{
flex-shrink: 0;
...
...
src/pages/webConfig/menuconfig/editForm.jsx
View file @
91eb8cd1
...
...
@@ -19,7 +19,7 @@ const EditForm = props => {
const
layout
=
{
layout
:
'horizontal'
,
labelCol
:
{
span
:
2
},
wrapperCol
:
{
span
:
2
0
,
offset
:
0
},
wrapperCol
:
{
span
:
2
1
,
offset
:
0
},
};
// 回显表单
useEffect
(()
=>
{
...
...
@@ -65,10 +65,10 @@ const EditForm = props => {
},
]
}
>
<
Input
/>
<
Input
placeholder=
"请输入菜单名称"
/>
</
Item
>
<
Item
label=
"菜单别名"
name=
"shortName"
>
<
Input
/>
<
Input
placeholder=
"请输入菜单别名"
/>
</
Item
>
<
Item
label=
"菜单图标"
...
...
@@ -82,8 +82,17 @@ const EditForm = props => {
>
<
PicturesWall
/>
</
Item
>
<
Item
label=
"功能路径"
name=
"pageUrl"
>
<
Input
/>
<
Item
label=
"功能路径"
name=
"pageUrl"
rules=
{
[
{
required
:
true
,
message
:
'请输入功能路径'
,
},
]
}
>
<
Input
placeholder=
"请输入功能路径"
/>
</
Item
>
<
Item
label=
"配置文件"
name=
"config"
>
<
EditeConfigWrapper
>
...
...
@@ -108,7 +117,7 @@ const EditForm = props => {
nodeType=
{
nodeType
}
valueCallback=
{
valueCallback
}
/>
<
Item
wrapperCol=
{
{
offset
:
10
}
}
style=
{
{
marginTop
:
'
4
0px'
}
}
>
<
Item
wrapperCol=
{
{
offset
:
10
}
}
style=
{
{
marginTop
:
'
2
0px'
}
}
>
<
Button
type=
"primary"
htmlType=
"submit"
>
提交
</
Button
>
...
...
@@ -125,27 +134,27 @@ const EditForm = props => {
className=
{
styles
.
formStyle
}
>
<
Item
label=
"菜单名称"
label=
"菜单
组
名称"
name=
"menuName"
rules=
{
[
{
required
:
true
,
message
:
'请输入菜单名称'
,
message
:
'请输入菜单
组
名称'
,
},
]
}
>
<
Input
/>
</
Item
>
<
Item
label=
"菜单别名"
name=
"shortName"
>
<
Input
/>
<
Item
label=
"菜单
组
别名"
name=
"shortName"
>
<
Input
placeholder=
"请输入菜单组别名"
/>
</
Item
>
<
Item
label=
"菜单图标"
label=
"菜单
组
图标"
name=
"imageUrl"
rules=
{
[
{
required
:
true
,
message
:
'请选择菜单图标'
,
message
:
'请选择菜单
组
图标'
,
},
]
}
>
...
...
src/services/index.js
View file @
91eb8cd1
import
{
request
}
from
'../utils/request'
;
console
.
log
(
window
,
'window'
);
// export const CITY_SERVICE =
// window.DicNameSERVICE !== 'publish'
// ? '/Publish/GateWay/CityServer'
// : '/Cityinterface/rest/services';
export
const
CITY_SERVICE
=
'/Cityinterface/rest/services'
;
export
const
PUBLISH_SERVICE
=
'/Publish/OMS'
;
// export const PUBLISH_SERVICE = '/Publish/GateWay/OMS';
...
...
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