This commit is contained in:
lcw
2025-10-26 12:25:50 +08:00
parent 5e18952b55
commit ea3022c3f6
617 changed files with 86322 additions and 185615 deletions

View File

@ -1,7 +1,7 @@
import request from "@/utils/request";
import axios from "axios";
import qs from 'qs'; // 或者使用 URLSearchParams
const api = "/bpm";
const api = "/jgpt/bpm";
const flowApproval = "/flowApproval";
const orgOrganization = '/orgOrganization'
// 解析数据
@ -40,9 +40,10 @@ export const splGet = (params = {}, url) => {
//post 请求
export const splPost = (data = {}, url) => {
return request({
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
url: api + url,
method: "post",
data
data: qs.stringify(data)
});
};
//put 请求