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
5e6c7688
Commit
5e6c7688
authored
2 years ago
by
涂伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: '节点配置查询表名添加参数'
parent
0d6d8039
Pipeline
#68794
passed with stages
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
NodeEdit.jsx
...rkOrder/workFlow/flowNode/flowNodeComponents/NodeEdit.jsx
+1
-1
ConfigNodeMsg.jsx
...flowChartComponents/nodeModalComponents/ConfigNodeMsg.jsx
+4
-2
No files found.
src/pages/bsmanager/workOrder/workFlow/flowNode/flowNodeComponents/NodeEdit.jsx
View file @
5e6c7688
...
...
@@ -179,7 +179,7 @@ const NodeEdit = props => {
};
// 获取表名
const
getTableName
=
()
=>
{
loadEventTypeTable
({
flowNodeId
:
msg
.
ID
}).
then
(
res
=>
{
loadEventTypeTable
({
flowNodeId
:
msg
.
ID
,
nodeType
:
Number
(
msg
.
nodeType
)
}).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
setEventTable
(
res
.
data
);
}
...
...
This diff is collapsed.
Click to expand it.
src/pages/bsmanager/workOrder/workflowEdit/workFlowComponents/flowChartComponents/nodeModalComponents/ConfigNodeMsg.jsx
View file @
5e6c7688
...
...
@@ -70,11 +70,13 @@ const ConfigNodeMsg = (props, ref) => {
};
// 获取表名
const
getTableName
=
()
=>
{
loadEventTypeTable
({
flowNodeId
:
editMsg
.
ActivityId
}).
then
(
res
=>
{
loadEventTypeTable
({
flowNodeId
:
editMsg
.
ActivityId
,
NodeType
:
Number
(
editMsg
.
NodeType
)
}).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
setEventTable
(
res
.
data
);
}
});
},
);
};
// 表切换
const
changTable
=
val
=>
{
...
...
This diff is collapsed.
Click to expand it.
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