You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
import request from '@/utils/request'
// 查询知识库查询提示列表
export function listTip(query) { return request({ url: '/system/tip/list', method: 'get', params: query })}
// 查询知识库查询提示详细
export function getTip(id) { return request({ url: '/system/tip/' + id, method: 'get' })}
// 新增知识库查询提示
export function addTip(data) { return request({ url: '/system/tip', method: 'post', data: data })}
// 修改知识库查询提示
export function updateTip(data) { return request({ url: '/system/tip', method: 'put', data: data })}
// 删除知识库查询提示
export function delTip(id) { return request({ url: '/system/tip/' + id, method: 'delete' })}
|