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
f11d79c9
Commit
f11d79c9
authored
Nov 02, 2022
by
皮倩雯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: '优化工单移交交互,关联表单控制规则接入组件,修复web搭建界面滚动条样式bug'
parent
be1adf3e
Pipeline
#63026
passed with stages
Changes
9
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
135 additions
and
35 deletions
+135
-35
index.jsx
src/components/RuleConfig/index.jsx
+20
-15
fieldEditor.jsx
...s/bsmanager/base/tablemanager/filedConfig/fieldEditor.jsx
+0
-0
filedConfig.jsx
...s/bsmanager/base/tablemanager/filedConfig/filedConfig.jsx
+34
-1
flowNode.jsx
src/pages/bsmanager/workOrder/workFlow/flowNode/flowNode.jsx
+2
-2
NodeEdit.jsx
...rkOrder/workFlow/flowNode/flowNodeComponents/NodeEdit.jsx
+62
-12
NodeModal.jsx
...Edit/workFlowComponents/flowChartComponents/NodeModal.jsx
+1
-0
index.jsx
src/pages/productCenter/webConfig/index.jsx
+13
-1
sortModal.jsx
src/pages/productCenter/webConfig/sortModal.jsx
+2
-2
sortModal.less
src/pages/productCenter/webConfig/sortModal.less
+1
-2
No files found.
src/components/RuleConfig/index.jsx
View file @
f11d79c9
...
@@ -12,7 +12,7 @@ import styles from './index.less';
...
@@ -12,7 +12,7 @@ import styles from './index.less';
import
Tree
from
'@/components/ExpendableTree'
;
import
Tree
from
'@/components/ExpendableTree'
;
const
{
TextArea
}
=
Input
;
const
{
TextArea
}
=
Input
;
const
RuleConfig
=
props
=>
{
const
RuleConfig
=
props
=>
{
const
{
visible
,
handleCancel
,
fieldList
,
onSubumit
,
RuleContent
}
=
props
;
const
{
visible
,
handleCancel
,
fieldList
,
onSubumit
,
RuleContent
,
flag
}
=
props
;
const
[
rule
,
setRule
]
=
useState
([]);
const
[
rule
,
setRule
]
=
useState
([]);
const
[
expandedKey
,
setExpandedKey
]
=
useState
(
''
);
// 默认展开项
const
[
expandedKey
,
setExpandedKey
]
=
useState
(
''
);
// 默认展开项
const
[
currentSelectId
,
setCurrentSelectId
]
=
useState
(
''
);
// 选中得节点
const
[
currentSelectId
,
setCurrentSelectId
]
=
useState
(
''
);
// 选中得节点
...
@@ -34,16 +34,14 @@ const RuleConfig = props => {
...
@@ -34,16 +34,14 @@ const RuleConfig = props => {
onSubumit
(
rule
);
onSubumit
(
rule
);
};
};
// 处理树数据
// 处理树数据
const
mapTree
=
(
val
,
index
)
=>
{
const
mapTree
=
(
val
,
index
)
=>
({
return
{
title
:
val
.
TableName
,
title
:
val
.
TableName
,
key
:
val
.
TableName
,
key
:
val
.
TableName
,
children
:
val
.
TableFieldNames
.
map
(
item
=>
({
children
:
val
.
TableFieldNames
.
map
(
item
=>
({
title
:
item
,
title
:
item
,
key
:
`
${
val
.
TableName
}
.
${
item
}
`
,
key
:
`
${
val
.
TableName
}
.
${
item
}
`
,
})),
})),
});
};
};
const
onSelect
=
(
prop
,
treeNode
)
=>
{
const
onSelect
=
(
prop
,
treeNode
)
=>
{
console
.
log
(
prop
,
treeNode
);
console
.
log
(
prop
,
treeNode
);
if
(
!
treeNode
.
node
.
children
)
{
if
(
!
treeNode
.
node
.
children
)
{
...
@@ -76,7 +74,7 @@ const RuleConfig = props => {
...
@@ -76,7 +74,7 @@ const RuleConfig = props => {
/>
/>
</
div
>
</
div
>
<
div
className=
{
styles
.
rightContent
}
>
<
div
className=
{
styles
.
rightContent
}
>
<
div
className=
{
styles
.
title
}
>
符合以下条件时工单扭转到对应的节点
</
div
>
{
flag
==
1
&&
<
div
className=
{
styles
.
title
}
>
符合以下条件时工单扭转到对应的节点
</
div
>
}
<
div
className=
{
styles
.
textAreaBox
}
>
<
div
className=
{
styles
.
textAreaBox
}
>
<
TextArea
<
TextArea
autoSize=
{
{
minRows
:
19
,
maxRows
:
19
}
}
autoSize=
{
{
minRows
:
19
,
maxRows
:
19
}
}
...
@@ -89,9 +87,16 @@ const RuleConfig = props => {
...
@@ -89,9 +87,16 @@ const RuleConfig = props => {
<
div
className=
{
styles
.
tipBox
}
>
<
div
className=
{
styles
.
tipBox
}
>
<
p
>
请从左侧面板选择字段或选项
</
p
>
<
p
>
请从左侧面板选择字段或选项
</
p
>
<
p
>
{
'支持英文模式下运算符(+、-、*、/、>、<、==、!=、<=、>=)及函数'
}
</
p
>
<
p
>
{
'支持英文模式下运算符(+、-、*、/、>、<、==、!=、<=、>=)及函数'
}
</
p
>
<
p
>
参考场景:
</
p
>
{
flag
==
1
?
(
<
p
>
当报销金额大于10000时,才能进入所选节点,则可将流转条件设置为:
</
p
>
<>
<
p
>
{
'报销金额>10000'
}
</
p
>
{
' '
}
<
p
>
参考场景:
</
p
>
<
p
>
当报销金额大于10000时,才能进入所选节点,则可将流转条件设置为:
</
p
>
<
p
>
{
'报销金额>10000'
}
</
p
>
</>
)
:
(
<
p
>
{
`示例:{表名.是否缴费} = ‘是’ and {表名.缴费金额} > 1000`
}
</
p
>
)
}
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
...
...
src/pages/bsmanager/base/tablemanager/filedConfig/fieldEditor.jsx
View file @
f11d79c9
This diff is collapsed.
Click to expand it.
src/pages/bsmanager/base/tablemanager/filedConfig/filedConfig.jsx
View file @
f11d79c9
...
@@ -63,6 +63,7 @@ const AddModal = props => {
...
@@ -63,6 +63,7 @@ const AddModal = props => {
const
[
checkStrictly
,
setCheckStrictly
]
=
useState
(
false
);
const
[
checkStrictly
,
setCheckStrictly
]
=
useState
(
false
);
const
[
selectGroup
,
setSelectGroup
]
=
useState
([]);
const
[
selectGroup
,
setSelectGroup
]
=
useState
([]);
const
[
keepStandingBook
,
setKeepStandingBook
]
=
useState
([]);
const
[
keepStandingBook
,
setKeepStandingBook
]
=
useState
([]);
const
[
keepTreeData
,
setKeepTreeData
]
=
useState
([]);
const
editor
=
record
=>
{
const
editor
=
record
=>
{
console
.
log
(
record
);
console
.
log
(
record
);
...
@@ -328,6 +329,16 @@ const AddModal = props => {
...
@@ -328,6 +329,16 @@ const AddModal = props => {
}).
then
(
res
=>
{
}).
then
(
res
=>
{
setTreeLoading
(
false
);
setTreeLoading
(
false
);
if
(
res
.
msg
===
'Ok'
)
{
if
(
res
.
msg
===
'Ok'
)
{
let
arrlist
=
[];
let
data
=
{};
let
listArr
=
[];
res
.
data
.
root
.
map
(
i
=>
{
arrlist
.
push
(
i
.
name
);
});
data
.
TableFieldNames
=
arrlist
;
data
.
TableName
=
treeSelectValue
.
substring
(
0
,
treeSelectValue
.
lastIndexOf
(
'@'
));
listArr
.
push
(
data
);
setKeepTreeData
(
listArr
);
let
arr
=
formateArrDataA
(
res
.
data
.
root
,
'group'
);
let
arr
=
formateArrDataA
(
res
.
data
.
root
,
'group'
);
let
newArr
=
[];
let
newArr
=
[];
Object
.
keys
(
arr
).
map
((
item
,
index
)
=>
{
Object
.
keys
(
arr
).
map
((
item
,
index
)
=>
{
...
@@ -357,6 +368,16 @@ const AddModal = props => {
...
@@ -357,6 +368,16 @@ const AddModal = props => {
}).
then
(
res
=>
{
}).
then
(
res
=>
{
setTreeLoading
(
false
);
setTreeLoading
(
false
);
if
(
res
.
msg
===
'Ok'
)
{
if
(
res
.
msg
===
'Ok'
)
{
let
arrlist
=
[];
let
data
=
{};
let
listArr
=
[];
res
.
data
.
root
.
map
(
i
=>
{
arrlist
.
push
(
i
.
name
);
});
data
.
TableFieldNames
=
arrlist
;
data
.
TableName
=
props
.
location
.
state
.
id
;
listArr
.
push
(
data
);
setKeepTreeData
(
listArr
);
let
arr
=
formateArrDataA
(
res
.
data
.
root
,
'group'
);
let
arr
=
formateArrDataA
(
res
.
data
.
root
,
'group'
);
let
newArr
=
[];
let
newArr
=
[];
Object
.
keys
(
arr
).
map
((
item
,
index
)
=>
{
Object
.
keys
(
arr
).
map
((
item
,
index
)
=>
{
...
@@ -563,6 +584,17 @@ const AddModal = props => {
...
@@ -563,6 +584,17 @@ const AddModal = props => {
}).
then
(
res
=>
{
}).
then
(
res
=>
{
setTreeLoading
(
false
);
setTreeLoading
(
false
);
if
(
res
.
msg
===
'Ok'
)
{
if
(
res
.
msg
===
'Ok'
)
{
let
arrlist
=
[];
let
data
=
{};
let
listArr
=
[];
res
.
data
.
root
.
map
(
i
=>
{
arrlist
.
push
(
i
.
name
);
});
data
.
TableFieldNames
=
arrlist
;
data
.
TableName
=
e
.
substring
(
0
,
e
.
lastIndexOf
(
'@'
));
listArr
.
push
(
data
);
setKeepTreeData
(
listArr
);
console
.
log
(
res
.
data
.
root
);
let
arr
=
formateArrDataA
(
res
.
data
.
root
,
'group'
);
let
arr
=
formateArrDataA
(
res
.
data
.
root
,
'group'
);
let
newArr
=
[];
let
newArr
=
[];
Object
.
keys
(
arr
).
map
((
item
,
index
)
=>
{
Object
.
keys
(
arr
).
map
((
item
,
index
)
=>
{
...
@@ -606,7 +638,7 @@ const AddModal = props => {
...
@@ -606,7 +638,7 @@ const AddModal = props => {
onChange
:
(
selectedRowKeys
,
selectedRows
)
=>
{
onChange
:
(
selectedRowKeys
,
selectedRows
)
=>
{
let
aa
=
[];
let
aa
=
[];
selectedRowKeys
.
map
(
i
=>
{
selectedRowKeys
.
map
(
i
=>
{
if
(
typeof
i
!=
'number'
)
{
if
(
typeof
i
!=
=
'number'
)
{
aa
.
push
(
i
);
aa
.
push
(
i
);
}
}
});
});
...
@@ -729,6 +761,7 @@ const AddModal = props => {
...
@@ -729,6 +761,7 @@ const AddModal = props => {
</
Modal
>
</
Modal
>
<
FieldEditor
<
FieldEditor
isVisible=
{
isVisible
}
isVisible=
{
isVisible
}
keepTreeData=
{
keepTreeData
}
isType=
{
isType
}
isType=
{
isType
}
itemData=
{
itemData
}
itemData=
{
itemData
}
formObj1=
{
formObj
}
formObj1=
{
formObj
}
...
...
src/pages/bsmanager/workOrder/workFlow/flowNode/flowNode.jsx
View file @
f11d79c9
...
@@ -222,7 +222,7 @@ const FlowNode = () => {
...
@@ -222,7 +222,7 @@ const FlowNode = () => {
// ),
// ),
// },
// },
{
{
title
:
'
平级移交
'
,
title
:
'
转办
'
,
dataIndex
:
'tranferable'
,
dataIndex
:
'tranferable'
,
align
:
'center'
,
align
:
'center'
,
width
:
80
,
width
:
80
,
...
@@ -379,7 +379,7 @@ const FlowNode = () => {
...
@@ -379,7 +379,7 @@ const FlowNode = () => {
// width: 80,
// width: 80,
// },
// },
{
{
title
:
'
平级移交
'
,
title
:
'
转办
'
,
align
:
'center'
,
align
:
'center'
,
width
:
80
,
width
:
80
,
},
},
...
...
src/pages/bsmanager/workOrder/workFlow/flowNode/flowNodeComponents/NodeEdit.jsx
View file @
f11d79c9
...
@@ -20,6 +20,7 @@ import {
...
@@ -20,6 +20,7 @@ import {
Drawer
,
Drawer
,
Space
,
Space
,
Tooltip
,
Tooltip
,
Switch
,
}
from
'antd'
;
}
from
'antd'
;
import
{
PlusOutlined
,
InfoCircleOutlined
}
from
'@ant-design/icons'
;
import
{
PlusOutlined
,
InfoCircleOutlined
}
from
'@ant-design/icons'
;
import
Fieldselection
from
'./nodeEditComponents/Fieldselection'
;
import
Fieldselection
from
'./nodeEditComponents/Fieldselection'
;
...
@@ -37,6 +38,9 @@ const NodeEdit = props => {
...
@@ -37,6 +38,9 @@ const NodeEdit = props => {
const
[
isDisable
,
setIsDisable
]
=
useState
();
// 允许回退是否可选择
const
[
isDisable
,
setIsDisable
]
=
useState
();
// 允许回退是否可选择
const
[
filedData
,
setFiledData
]
=
useState
([]);
// 已选字段列表
const
[
filedData
,
setFiledData
]
=
useState
([]);
// 已选字段列表
const
[
filedList
,
setFiledList
]
=
useState
([]);
// 当前选择表的所有字段
const
[
filedList
,
setFiledList
]
=
useState
([]);
// 当前选择表的所有字段
const
[
visibleChecked
,
setVisibleChecked
]
=
useState
(
true
);
const
[
visibleChecked1
,
setVisibleChecked1
]
=
useState
(
true
);
const
[
visibleChecked2
,
setVisibleChecked2
]
=
useState
(
true
);
const
[
form
]
=
Form
.
useForm
();
const
[
form
]
=
Form
.
useForm
();
useEffect
(()
=>
{
useEffect
(()
=>
{
...
@@ -67,6 +71,13 @@ const NodeEdit = props => {
...
@@ -67,6 +71,13 @@ const NodeEdit = props => {
setIsDisable
(
true
);
setIsDisable
(
true
);
}
}
changTable
(
obj
.
TableName
);
changTable
(
obj
.
TableName
);
console
.
log
(
obj
);
obj
.
Transferable
=
obj
.
Transferable
==
1
;
obj
.
EventsInformation
=
obj
.
EventsInformation
==
1
;
obj
.
IsSendMessage
=
obj
.
IsSendMessage
==
1
;
setVisibleChecked
(
obj
.
Transferable
==
1
);
setVisibleChecked1
(
obj
.
EventsInformation
==
1
);
setVisibleChecked2
(
obj
.
IsSendMessage
==
1
);
form
.
setFieldsValue
(
obj
);
form
.
setFieldsValue
(
obj
);
}
}
});
});
...
@@ -193,6 +204,11 @@ const NodeEdit = props => {
...
@@ -193,6 +204,11 @@ const NodeEdit = props => {
const
onFinish
=
()
=>
{
const
onFinish
=
()
=>
{
form
.
validateFields
().
then
(
validate
=>
{
form
.
validateFields
().
then
(
validate
=>
{
if
(
validate
)
{
if
(
validate
)
{
console
.
log
(
validate
);
validate
.
Transferable
=
validate
.
Transferable
?
1
:
0
;
validate
.
EventsInformation
=
validate
.
EventsInformation
?
1
:
0
;
validate
.
IsSendMessage
=
validate
.
IsSendMessage
?
1
:
0
;
console
.
log
(
validate
);
editFlowNodeExtend
({
...
validate
,
flowNodeId
:
msg
.
ID
})
editFlowNodeExtend
({
...
validate
,
flowNodeId
:
msg
.
ID
})
.
then
(
res
=>
{
.
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
if
(
res
.
code
===
0
)
{
...
@@ -279,6 +295,18 @@ const NodeEdit = props => {
...
@@ -279,6 +295,18 @@ const NodeEdit = props => {
}
}
return
externalLength
;
return
externalLength
;
};
};
const
change
=
e
=>
{
console
.
log
(
e
);
setVisibleChecked
(
e
);
};
const
change1
=
e
=>
{
console
.
log
(
e
);
setVisibleChecked1
(
e
);
};
const
change2
=
e
=>
{
console
.
log
(
e
);
setVisibleChecked2
(
e
);
};
return
(
return
(
<
Drawer
<
Drawer
title=
"流程节点配置"
title=
"流程节点配置"
...
@@ -355,16 +383,20 @@ const NodeEdit = props => {
...
@@ -355,16 +383,20 @@ const NodeEdit = props => {
</
Select
>
</
Select
>
</
Form
.
Item
>
</
Form
.
Item
>
<
Form
.
Item
label=
"移交方式"
name=
"Handover"
>
<
Form
.
Item
label=
"移交方式"
name=
"Handover"
>
<
Select
>
<
Radio
.
Group
>
<
Option
value=
"移交选择人"
>
移交选择人
</
Option
>
<
Radio
value=
"移交选择人"
>
移交选择人
</
Radio
>
<
Radio
value=
"自处理"
>
自处理
</
Radio
>
<
Radio
value=
"移交默认人"
>
移交默认人
</
Radio
>
<
Radio
value=
"移交发起人"
>
移交发起人
</
Radio
>
{
/* <Option value="移交选择人">移交选择人</Option>
<Option value="自处理">自处理</Option>
<Option value="自处理">自处理</Option>
<Option value="自处理或者移交选择人">自处理或者移交选择人</Option>
<Option value="自处理或者移交选择人">自处理或者移交选择人</Option>
<Option value="移交默认人">移交默认人</Option>
<Option value="移交默认人">移交默认人</Option>
<Option value="移交发起人">移交发起人</Option>
<Option value="跨站移交">跨站移交</Option>
<Option value="跨站移交">跨站移交</Option>
<Option value="处理站点移交">处理站点移交</Option>
<Option value="处理站点移交">处理站点移交</Option>
<
Option
value=
"本人站点移交"
>
本人站点移交
</
Option
>
<Option value="本人站点移交">本人站点移交</Option> */
}
<
Option
value=
"移交上报人"
>
移交上报人
</
Option
>
</
Radio
.
Group
>
</
Select
>
</
Form
.
Item
>
</
Form
.
Item
>
{
/* <Form.Item label="检查前面在办" name="aheadHandle">
{
/* <Form.Item label="检查前面在办" name="aheadHandle">
<Select>
<Select>
...
@@ -379,23 +411,41 @@ const NodeEdit = props => {
...
@@ -379,23 +411,41 @@ const NodeEdit = props => {
<Option value={2}>一人接收,一人办理</Option>
<Option value={2}>一人接收,一人办理</Option>
</Select>
</Select>
</Form.Item> */
}
</Form.Item> */
}
<
Form
.
Item
label=
"平级移交"
name=
"Transferable"
>
<
Form
.
Item
label=
"转办"
name=
"Transferable"
>
<
Radio
.
Group
>
<
Switch
checkedChildren=
"是"
unCheckedChildren=
"否"
checked=
{
visibleChecked
}
onChange=
{
change
}
/>
{
/* <Radio.Group>
<Radio value="0">否</Radio>
<Radio value="0">否</Radio>
<Radio value="1">是</Radio>
<Radio value="1">是</Radio>
</
Radio
.
Group
>
</Radio.Group>
*/
}
</
Form
.
Item
>
</
Form
.
Item
>
<
Form
.
Item
label=
"显示事件信息"
name=
"EventsInformation"
>
<
Form
.
Item
label=
"显示事件信息"
name=
"EventsInformation"
>
<
Radio
.
Group
>
<
Switch
checkedChildren=
"是"
unCheckedChildren=
"否"
checked=
{
visibleChecked1
}
onChange=
{
change1
}
/>
{
/* <Radio.Group>
<Radio value="0">否</Radio>
<Radio value="0">否</Radio>
<Radio value="1">是</Radio>
<Radio value="1">是</Radio>
</
Radio
.
Group
>
</Radio.Group>
*/
}
</
Form
.
Item
>
</
Form
.
Item
>
<
Form
.
Item
label=
"是否发送短信"
name=
"IsSendMessage"
>
<
Form
.
Item
label=
"是否发送短信"
name=
"IsSendMessage"
>
<
Radio
.
Group
>
<
Switch
checkedChildren=
"是"
unCheckedChildren=
"否"
checked=
{
visibleChecked2
}
onChange=
{
change2
}
/>
{
/* <Radio.Group>
<Radio value={0}>否</Radio>
<Radio value={0}>否</Radio>
<Radio value={1}>是</Radio>
<Radio value={1}>是</Radio>
</
Radio
.
Group
>
</Radio.Group>
*/
}
</
Form
.
Item
>
</
Form
.
Item
>
<
Form
.
Item
<
Form
.
Item
...
...
src/pages/bsmanager/workOrder/workflowEdit/workFlowComponents/flowChartComponents/NodeModal.jsx
View file @
f11d79c9
...
@@ -684,6 +684,7 @@ const NodeModal = props => {
...
@@ -684,6 +684,7 @@ const NodeModal = props => {
visible=
{
showRule
}
visible=
{
showRule
}
handleCancel=
{
()
=>
setShowRule
(
false
)
}
handleCancel=
{
()
=>
setShowRule
(
false
)
}
onSubumit=
{
e
=>
saveRule
(
e
)
}
onSubumit=
{
e
=>
saveRule
(
e
)
}
flag=
{
1
}
/>
/>
</>
</>
);
);
...
...
src/pages/productCenter/webConfig/index.jsx
View file @
f11d79c9
...
@@ -414,12 +414,24 @@ const WebConfigPage = props => {
...
@@ -414,12 +414,24 @@ const WebConfigPage = props => {
<
PageContainer
>
<
PageContainer
>
<
div
className=
{
styles
.
webConfigContainer
}
>
<
div
className=
{
styles
.
webConfigContainer
}
>
<
Spin
spinning=
{
loading
||
submitting
}
>
<
Spin
spinning=
{
loading
||
submitting
}
>
<
div
style=
{
{
display
:
'flex'
,
alignContent
:
'center'
,
justifyContent
:
'flex-start'
}
}
>
<
div
style=
{
{
display
:
'flex'
,
alignContent
:
'center'
,
justifyContent
:
'flex-start'
,
}
}
>
<
Tabs
<
Tabs
type=
"editable-card"
type=
"editable-card"
onEdit=
{
onEdit
}
onEdit=
{
onEdit
}
onChange=
{
handleTabChange
}
onChange=
{
handleTabChange
}
activeKey=
{
curWeb
.
id
}
activeKey=
{
curWeb
.
id
}
style=
{
{
display
:
'flex'
,
alignContent
:
'center'
,
justifyContent
:
'flex-start'
,
width
:
'97% '
,
}
}
>
>
{
/* <TabPane key={99} tab="产品配置" closable={false}>
{
/* <TabPane key={99} tab="产品配置" closable={false}>
<ProductConfig />
<ProductConfig />
...
...
src/pages/productCenter/webConfig/sortModal.jsx
View file @
f11d79c9
...
@@ -74,7 +74,7 @@ const SortModal = props => {
...
@@ -74,7 +74,7 @@ const SortModal = props => {
cancelText=
"取消"
cancelText=
"取消"
>
>
<
div
className=
{
styles
.
cardContent
}
style=
{
{
width
:
'90%'
,
marginLeft
:
'24px'
}
}
>
<
div
className=
{
styles
.
cardContent
}
style=
{
{
width
:
'90%'
,
marginLeft
:
'24px'
}
}
>
<
div
style=
{
{
minHeight
:
'2
00px'
}
}
>
<
div
style=
{
{
height
:
'5
00px'
}
}
>
<
DragTable
<
DragTable
bordered
bordered
style=
{
{
marginBottom
:
'10px'
}
}
style=
{
{
marginBottom
:
'10px'
}
}
...
@@ -87,7 +87,7 @@ const SortModal = props => {
...
@@ -87,7 +87,7 @@ const SortModal = props => {
dragCallBack=
{
dragCallBack
}
dragCallBack=
{
dragCallBack
}
ItemTypes=
"flowOrder"
ItemTypes=
"flowOrder"
scroll=
{
{
scroll=
{
{
y
:
50
0
,
y
:
45
0
,
}
}
}
}
/>
/>
</
div
>
</
div
>
...
...
src/pages/productCenter/webConfig/sortModal.less
View file @
f11d79c9
.cardContent {
.cardContent {
height: 30rem;
height: 30rem;
overflow-y: scroll;
overflow-x: scroll;
width: 100%;
width: 100%;
.ant-checkbox-group {
.ant-checkbox-group {
...
...
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