11 lines
564 B
JavaScript
11 lines
564 B
JavaScript
/**
|
|
* api接口统一管理
|
|
*/
|
|
import {post} from '../http'
|
|
|
|
export const getAiConfigPage = data => post('/xmgl/aiConfig/page', data); //分页查询 AI问答配置列表
|
|
export const addAiConfig = data => post('/xmgl/aiConfig/add', data); //添加 AI问答配置
|
|
export const editAiConfig = data => post('/xmgl/aiConfig/edit', data); //编辑 AI问答配置
|
|
export const deleteAiConfig = data => post('/xmgl/aiConfig/delete', data); //删除 AI问答配置
|
|
export const getAiConfigList = data => post('/xmgl/aiConfig/list', data); //查询 AI问答配置列表
|