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
73c02fa6
Commit
73c02fa6
authored
May 11, 2023
by
涂伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: '1.流程中心校验bug修复2.编辑流程交互优化'
parent
96d3c11d
Pipeline
#72218
passed with stages
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
FlowModal.jsx
...r/workOrder/workflowEdit/workFlowComponents/FlowModal.jsx
+1
-1
NodeModal.jsx
...Edit/workFlowComponents/flowChartComponents/NodeModal.jsx
+4
-0
api.js
src/services/standingBook/api.js
+4
-0
No files found.
src/pages/bsmanager/workOrder/workflowEdit/workFlowComponents/FlowModal.jsx
View file @
73c02fa6
...
...
@@ -553,7 +553,7 @@ const FlowModal = props => {
onChange=
{
e
=>
{
prefix
(
e
.
target
.
value
);
}
}
readOnly
=
{
modalType
===
'edit'
}
disabled
=
{
modalType
===
'edit'
}
/>
</
Form
.
Item
>
<
Form
.
Item
...
...
src/pages/bsmanager/workOrder/workflowEdit/workFlowComponents/flowChartComponents/NodeModal.jsx
View file @
73c02fa6
...
...
@@ -59,6 +59,9 @@ const NodeModal = props => {
...
refConfigTimeLimit
.
current
?.
getParmar
(),
};
// 开始中间结束节点才校验表名编辑字段
const
arr
=
[
'0'
,
'1'
,
'2'
];
if
(
arr
.
includes
(
editMsg
.
NodeType
))
{
if
(
!
obj
.
TableName
)
{
message
.
error
(
'请选择节点表名'
);
return
;
...
...
@@ -68,6 +71,7 @@ const NodeModal = props => {
message
.
error
(
'请选择编辑字段'
);
return
;
}
}
for
(
let
i
=
0
;
i
<
obj
.
RuleList
.
length
;
i
++
)
{
if
(
!
obj
.
RuleList
[
i
].
RuleName
)
{
...
...
src/services/standingBook/api.js
View file @
73c02fa6
...
...
@@ -130,3 +130,7 @@ export const CheckImportLedgerConfig = data =>
// 导入台账
export
const
ImportLedgerConfig
=
data
=>
post
(
`
${
PUBLISH_SERVICE
}
/WorkOrderCenter/ImportLedgerConfig`
,
data
);
// 获取台账字段配置数据
export
const
Ledger_QueryLedger
=
query
=>
get
(
`
${
PUBLISH_SERVICE
}
/WorkOrderCenter/Ledger_QueryLedger`
,
query
);
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