暂降治理评估

This commit is contained in:
2024-03-28 13:25:41 +08:00
parent 45ba496361
commit 965b18b540
44 changed files with 2748 additions and 1108 deletions

View File

@@ -3,7 +3,18 @@ import createAxios from '@/utils/request'
const ADVANCE_BOOT = '/advance-boot'
/**
* 新增业务用户
* 查询进线数据
*/
export const querySgIncomingLineByUserId = (data: any) => {
return createAxios({
url: ADVANCE_BOOT + '/sgIncomingLine/list?userId=' + data,
method: 'GET'
})
}
/**
* 新增进线
*/
export const addSgIncomingLine = (data: any) => {
return createAxios({
@@ -15,7 +26,7 @@ export const addSgIncomingLine = (data: any) => {
/**
* 更新业务用户
* 更新进线
*/
export const updateSgIncomingLine = (data: any) => {
return createAxios({
@@ -27,7 +38,7 @@ export const updateSgIncomingLine = (data: any) => {
/**
* 删除业务用户
* 删除进线
*/
export const deleteSgIncomingLine = (data: any) => {
let ids = [data]