发票列表

This commit is contained in:
cxc
2022-10-01 09:11:23 +08:00
parent 5592d9f40c
commit ac802a9ef9
17 changed files with 1119 additions and 439 deletions

View 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
})