You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.4 KiB
95 lines
2.4 KiB
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* @Author Yzz
|
|
* @Description 获取流程绑定信息的主表数据
|
|
* @Date 2024/15/09 15:41:26
|
|
**/
|
|
export const getRequestMainData = data => createAPI(`/plm/request/getRequestMainData`,'post',data)
|
|
|
|
/**
|
|
* @Author Yzz
|
|
* @Description 获取流程绑定信息的主表数据
|
|
* @Date 2024/15/09 15:41:26
|
|
**/
|
|
export const saveRequestHeader = data => createAPI(`/plm/request/saveRequestHeader`,'post',data)
|
|
|
|
/**
|
|
* @Author Yzz
|
|
* @Description 获取流程绑定信息的主表数据
|
|
* @Date 2024/15/09 15:41:26
|
|
**/
|
|
export const updateRequestHeader = data => createAPI(`/plm/request/updateRequestHeader`,'post',data)
|
|
|
|
/**
|
|
* @Author Yzz
|
|
* @Description 获取流程绑定信息的主表数据
|
|
* @Date 2024/15/09 15:41:26
|
|
**/
|
|
export const deleteRequestHeader = data => createAPI(`/plm/request/deleteRequestHeader`,'post',data)
|
|
|
|
/*
|
|
* @Author Yzz
|
|
* @Description 根据流程获取节点信息
|
|
* @Date 2024/16/11 16:17:18
|
|
**/
|
|
export const getNodeInfoByWorkflow = data => createAPI(`/plm/request/getNodeInfoByWorkflow`,'post',data)
|
|
|
|
/*
|
|
* @Author Yzz
|
|
* @Description 获取流程现有的出口配置
|
|
* @Date 2024/14/12 14:59:01
|
|
**/
|
|
export const getNodeDetail = data => createAPI(`/plm/request/getNodeDetail`,'post',data)
|
|
|
|
/*
|
|
* @Author Yzz
|
|
* @Description 保存流程出口配置
|
|
* @Date 2024/14/12 14:59:23
|
|
**/
|
|
export const saveRequestNodeDetail = data => createAPI(`/plm/request/saveRequestNodeDetail`,'post',data)
|
|
|
|
/*
|
|
* @Author Yzz
|
|
* @Description 删除对应流程节点的全部出口配置
|
|
* @Date 2024/16/12 16:03:52
|
|
**/
|
|
export const deleteRequestNodeDetailByLine = data => createAPI(`/plm/request/deleteRequestNodeDetailByLine`,'post',data)
|
|
|
|
/**
|
|
* 获取table列表
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const getTableList = data => createAPI(`/plm/request/getTableList`,'post',data)
|
|
|
|
/**
|
|
* 获取表字段
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const getFieldList = data => createAPI(`/plm/request/getFieldList`,'post',data)
|
|
|
|
/**
|
|
* 获取权限字段集合
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const getAuthorityFieldList = data => createAPI(`/plm/request/getAuthorityFieldList`,'post',data)
|
|
|
|
/**
|
|
* 保存节点权限
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const saveAuthorityList = data => createAPI(`/plm/request/saveAuthorityList`,'post',data)
|
|
|
|
/**
|
|
* 修改节点
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const editNodeInfo = data => createAPI(`/plm/request/editNodeInfo`,'post',data)
|
|
|
|
|
|
|