15 lines
250 B
JavaScript
15 lines
250 B
JavaScript
import http from "../http";
|
|
import config from "../config";
|
|
|
|
export default class IndexServe {
|
|
|
|
async home (data = {}, header = {}) {
|
|
return await http.get({
|
|
url: config.urlList.index,
|
|
data: data,
|
|
header: header
|
|
})
|
|
}
|
|
|
|
}
|