You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
410 B
16 lines
410 B
import { request, requestC } from '@/utils/request';
|
|
|
|
export const getConfig = async () =>
|
|
await requestC(`/index/getConfig`, "GET");
|
|
|
|
export const getBannerList = async () =>
|
|
await request(`/index/getBannerList`, "GET");
|
|
|
|
export const getSupplierList = async () =>
|
|
await request(`/index/getSupplierList`, "GET");
|
|
|
|
export const getCateList = async () =>
|
|
await requestC(`/index/getCateList`, "GET");
|
|
|
|
|