Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
vue-flow-editor
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2023-12-08 15:58:11 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a46c2ae26be2f5c244684b52af2239ee5a37c926
a46c2ae2
1 parent
a24619c7
节点是否填写完整性检查
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
doc/App.vue
doc/api/index.js
doc/App.vue
View file @
a46c2ae
This diff is collapsed. Click to expand it.
doc/api/index.js
View file @
a46c2ae
/*
* @Date: 2023-11-30 10:34:01
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-12-0
6 11:36:04
* @LastEditTime: 2023-12-0
8 13:11:15
* @FilePath: /vue-flow-editor/doc/api/index.js
* @Description: 文件描述
*/
...
...
@@ -15,6 +15,7 @@ const Api = {
FLOW_NODE_PROPERTY
:
'/admin/?a=flow_node_property'
,
SAVE_FLOW_NODE_PROPERTY
:
'/admin/?a=save_node_property'
,
SAVE_ALL_FLOW_NODE_PROPERTY
:
'/admin/?a=save_all_node_property'
,
CHECK_ALL_FLOW_NODE_PROPERTY
:
'/admin/?a=check_all_node_property'
,
}
/**
...
...
@@ -73,3 +74,10 @@ export const saveFlowNodePropertyAPI = (params) => fn(fetch.stringifyPost(Api.SA
* @returns
*/
export
const
saveAllFlowNodePropertyAPI
=
(
params
)
=>
fn
(
fetch
.
stringifyPost
(
Api
.
SAVE_ALL_FLOW_NODE_PROPERTY
,
params
));
/**
* @description: 检查流程在库节点属性是否完整
* @param {*} flow_id 流程 ID
* @returns
*/
export
const
checkAllFlowNodePropertyAPI
=
(
params
)
=>
fn
(
fetch
.
get
(
Api
.
CHECK_ALL_FLOW_NODE_PROPERTY
,
params
));
...
...
Please
register
or
login
to post a comment