Lou
2023-11-30 ed3eff368eb421028ae898950ea4796e4c5b6e0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import http from '@/http/api.js'
 
//发布圈子内容
export const handlePublish = (params) => {
    return http.request({
        url: '/blade-circle/circle/save',
        method: 'POST',
        data: params
    })
}
 
//获取圈子列表
export const getList = (params) => {
    return http.request({
        url: '/blade-circle/circle/page',
        method: 'GET',
        params: {
            ...params
        }
    })
}
 
//获取圈子详情
export const getDetail = (params) => {
    return http.request({
        url: '/blade-circle/circle/detail',
        method: 'GET',
        params: {
            ...params
        }
    })
}