XiaoRuby
2023-08-22 73ae352a2cf79d802ce860c9a62e7334595b63e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 import request from '@/utils/request'
 
export function get(path, params) {
    return request({
        url: path,
        method: 'get',
        params
    })
}
 
export function post(path, data) {
    return request({
        url: path,
        method: 'post',
        data
    })
}