23 lines
490 B
JavaScript
23 lines
490 B
JavaScript
import oahttp from "@/utils/oahttp.js";
|
|
|
|
/**
|
|
* 新增档案
|
|
*/
|
|
export const informationAdd = (data) => oahttp.post('/information/add', data)
|
|
|
|
/**
|
|
* 新增列表
|
|
*/
|
|
export const informationList = (data) => oahttp.get('/information/list', data)
|
|
|
|
/**
|
|
* 档案详情
|
|
*/
|
|
export const informationDetails = (data) => oahttp.get('/information/details', data)
|
|
|
|
/**
|
|
* 更新商机
|
|
*/
|
|
export const informationOpportunityUpdate = (data) => oahttp.post('/information/opportunity_update', data)
|
|
|