Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5cfb67d0
authored
Oct 21, 2023
by
kehaiyou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 【工作流】--加签减签review修改接口地址
parent
826199dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/api/bpm/task/index.ts
+3
-3
No files found.
src/api/bpm/task/index.ts
View file @
5cfb67d0
...
@@ -63,19 +63,19 @@ export const delegateTask = async (data) => {
...
@@ -63,19 +63,19 @@ export const delegateTask = async (data) => {
* 加签
* 加签
*/
*/
export
const
taskAddSign
=
async
(
data
)
=>
{
export
const
taskAddSign
=
async
(
data
)
=>
{
return
await
request
.
put
({
url
:
'/bpm/task/
add
-sign'
,
data
})
return
await
request
.
put
({
url
:
'/bpm/task/
create
-sign'
,
data
})
}
}
/**
/**
* 获取减签任务列表
* 获取减签任务列表
*/
*/
export
const
getChildrenTaskList
=
async
(
id
:
string
)
=>
{
export
const
getChildrenTaskList
=
async
(
id
:
string
)
=>
{
return
await
request
.
get
({
url
:
'/bpm/task/
get-children-task
-list?taskId='
+
id
})
return
await
request
.
get
({
url
:
'/bpm/task/
children
-list?taskId='
+
id
})
}
}
/**
/**
* 减签
* 减签
*/
*/
export
const
taskSubSign
=
async
(
data
)
=>
{
export
const
taskSubSign
=
async
(
data
)
=>
{
return
await
request
.
put
({
url
:
'/bpm/task/sub
-sign'
,
data
})
return
await
request
.
delete
({
url
:
'/bpm/task/delete
-sign'
,
data
})
}
}
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