22 lines
417 B
JavaScript
Raw Normal View History

2025-05-21 13:44:54 +08:00
// src/apis/brand.js
import axios from '@/utils/axios';
export const getProducts = (params) => {
return axios.get('/api/brand/products', {
params,
apisType: 'mock',
});
};
export const getApplyList = () => {
return axios.get('/api/brand/apply-list', {
apisType: 'mock',
});
};
export const getMonitorList = () => {
return axios.get('/api/brand/monitor-list', {
apisType: 'mock',
});
};