fix: 后台接口修改路径。
This commit is contained in:
@@ -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'
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user