1234567891011121314151617181920212223242526 |
- import http from "@/api/http.js";
- /* 权益小程序管理 报告模块*/
- const YanXuanApi = {
- // 作者列表
- yanxuan_specialAuthorList: (params) => {
- return http.get("/cygx/yanxuan_special/author/list", params);
- },
- // 新增研选专栏作者
- yanxuan_specialAuthorAdd: (params) => {
- return http.post("/cygx/yanxuan_special/author/add", params);
- },
- // 禁用/启用研选专栏作者
- yanxuan_specialAuthorEnable: (params) => {
- return http.post("/cygx/yanxuan_special/author/enable", params);
- },
- // 审核列表
- yanxuan_specialList: (params) => {
- return http.get("/cygx/yanxuan_special/list", params);
- },
- // 审批研选专栏
- yanxuan_specialEnable: (params) => {
- return http.post("/cygx/yanxuan_special/enable", params);
- },
- };
- export default YanXuanApi;
|