linwe
2023-11-11 342050c3c3486dc52a8614bea4bdf8378f4df1f2
1
2
3
4
5
6
7
8
9
10
11
import http from '@/http/api.js'
 
export const getPage = (params) => {
    return http.request({
        url: '/blade-article/article/page',
        method: 'GET',
        params: {
            ...params
        }
    })
}