发票列表
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import request from '@/utils/request'
|
||||
// 获取企业需求列表
|
||||
export const businessList=(params)=>request({
|
||||
url:"/business/dataReview/technologyDemandList",
|
||||
method:'get',
|
||||
export const businessList = (params) => request({
|
||||
url: "/business/dataReview/technologyDemandList",
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
19
src/api/dataApproval/enterpriseProduct.js
Normal file
19
src/api/dataApproval/enterpriseProduct.js
Normal file
@ -0,0 +1,19 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 获取企业产品审核列表
|
||||
export const enterpriseProductApprovalList = (params) => request({
|
||||
url: "/business/dataReview/enterpriseProductList",
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
// 获取企业产品审核详情
|
||||
export const getProductApprovalInfo = (id) => request({
|
||||
url: `/business/dataReview/getProductInfo/${id}`,
|
||||
method: 'get',
|
||||
})
|
||||
// 修改企业产品审核状态
|
||||
export const updateEnterpriseApprovalProduct = (data) => request({
|
||||
url: `/business/dataReview/updateEnterpriseProduct`,
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
@ -7,6 +7,14 @@ export function casDealLogList(params) {
|
||||
params
|
||||
});
|
||||
}
|
||||
// 获取发票列表
|
||||
export function billList(params) {
|
||||
return request({
|
||||
url: `/business/casDealLog/billList`,
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
}
|
||||
export function addDealLog(data) {
|
||||
return request({
|
||||
url: `/business/casDealLog`,
|
||||
|
||||
Reference in New Issue
Block a user