22 lines
417 B
JavaScript
22 lines
417 B
JavaScript
|
// 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',
|
||
|
});
|
||
|
};
|