linwe
2023-11-11 74348ff0e42706edf03841cb363d78cd7cf3c71c
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
        }
    })
}