咨询等功能完善

This commit is contained in:
menxipeng
2025-08-15 15:55:13 +08:00
parent ebc3e110b7
commit 37623bcab9
18 changed files with 937 additions and 11 deletions

View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询咨询列列表
export function listInfo(query) {
return request({
url: '/system/info/list',
method: 'get',
params: query
})
}
// 查询咨询列详细
export function getInfo(id) {
return request({
url: '/system/info/' + id,
method: 'get'
})
}
// 新增咨询列
export function addInfo(data) {
return request({
url: '/system/info',
method: 'post',
data: data
})
}
// 修改咨询列
export function updateInfo(data) {
return request({
url: '/system/info',
method: 'put',
data: data
})
}
// 删除咨询列
export function delInfo(id) {
return request({
url: '/system/info/' + id,
method: 'delete'
})
}