This commit is contained in:
dute7liang
2023-12-19 22:24:39 +08:00
commit 943c4dd7cb
326 changed files with 29044 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
import request from '@/utils/request'
// 查询商家修改审核列表
export function listShopAudit(query) {
return request({
url: '/business/shopAudit/list',
method: 'get',
params: query
})
}
// 查询商家修改审核详细
export function getShopAudit(id) {
return request({
url: '/business/shopAudit/' + id,
method: 'get'
})
}
// 新增商家修改审核
export function addShopAudit(data) {
return request({
url: '/business/shopAudit',
method: 'post',
data: data
})
}
// 修改商家修改审核
export function updateShopAudit(data) {
return request({
url: '/business/shopAudit',
method: 'put',
data: data
})
}
// 删除商家修改审核
export function delShopAudit(id) {
return request({
url: '/business/shopAudit/' + id,
method: 'delete'
})
}
// 导出商家修改审核
export function exportShopAudit(query) {
return request({
url: '/business/shopAudit/export',
method: 'get',
params: query
})
}