1234567891011121314151617181920212223 |
- //问答社区模块
- import { httpGet, httpPost } from "@/utils/request.js";
- /**
- * 问答列表
- * @param chart_permission_id
- * @param reply_status
- */
- export const apiQuestionList=params=>{
- return httpGet('/community/question/list',params)
- }
- /**
- * FICC品种权限
- */
- export const apiOptionList=params=>{
- return httpGet('/company/permission/tree',params)
- }
- /**
- * 发布提问
- */
- export const apiPubAsk=params=>{
- return httpPost('/community/question/ask',params)
- }
|