fix: 后台接口修改路径。

This commit is contained in:
tianyongbao
2025-12-19 23:33:57 +08:00
parent 025b34d8f0
commit 9a34b32c92
4 changed files with 30 additions and 30 deletions

View File

@@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询操作日志列表
export function listIlog(query) {
return request({
url: '/investprod/ilog/list',
url: '/invest/ilog/list',
method: 'get',
params: query
})
@@ -12,7 +12,7 @@ export function listIlog(query) {
// 查询操作日志详细
export function getIlog(logId) {
return request({
url: '/investprod/ilog/' + logId,
url: '/invest/ilog/' + logId,
method: 'get'
})
}
@@ -20,7 +20,7 @@ export function getIlog(logId) {
// 新增操作日志
export function addIlog(data) {
return request({
url: '/investprod/ilog',
url: '/invest/ilog',
method: 'post',
data
})
@@ -29,7 +29,7 @@ export function addIlog(data) {
// 修改操作日志
export function updateIlog(data) {
return request({
url: '/investprod/ilog',
url: '/invest/ilog',
method: 'put',
data
})
@@ -38,7 +38,7 @@ export function updateIlog(data) {
// 删除操作日志
export function delIlog(logId) {
return request({
url: '/investprod/ilog/' + logId,
url: '/invest/ilog/' + logId,
method: 'delete'
})
}