fix:项目初始化
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* @Author:
|
||||
* @Mail:
|
||||
* @Date: 2022-03-14 15:25:07
|
||||
* @LastEditTime: 2022-06-06 17:59:55
|
||||
* @LastEditors:
|
||||
* @FilePath: /comics-admin/src/api/datingManagement/datingReport.js
|
||||
*/
|
||||
import request from '@/utils/request'
|
||||
// 新增约炮体验报告
|
||||
export function datingReportAdd (data) {
|
||||
return request({
|
||||
url: '/api/web/dating/report/add',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 删除约炮体验报告
|
||||
export function datingReportDel (data) {
|
||||
return request({
|
||||
url: '/api/web/dating/report/del',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 请求约炮体验报告列表
|
||||
export function datingReportList (data) {
|
||||
return request({
|
||||
url: '/api/web/dating/report/list',
|
||||
method: 'post',
|
||||
filterParam: true,
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改约炮体验报告
|
||||
export function datingReportUpdate (data) {
|
||||
return request({
|
||||
url: '/api/web/dating/report/update',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改约炮体验报告
|
||||
export function datingReportAudit (data) {
|
||||
return request({
|
||||
url: '/api/web/dating/report/audit',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user