添加流转接口 设计流转表

This commit is contained in:
pixel
2020-11-12 18:21:03 +08:00
parent 86afc0ddf4
commit 4863b2c5be
10 changed files with 85 additions and 18 deletions

View File

@@ -106,10 +106,10 @@ export const getWorkflowProcessList = (params) => {
// @Produce application/json
// @Param data body model.WorkflowProcess true "用id查询WorkflowProcess"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
// @Router /workflowProcess/findWorkflowCreateStep [get]
export const findWorkflowCreateStep = (params) => {
// @Router /workflowProcess/findWorkflowStep [get]
export const findWorkflowStep = (params) => {
return service({
url: "/workflowProcess/findWorkflowCreateStep",
url: "/workflowProcess/findWorkflowStep",
method: 'get',
params
})