Files
meida_applet/sheep/api/promotion/diy/page.js
T

16 lines
222 B
JavaScript

import request from '@/sheep/request';
const DiyPageApi = {
getDiyPage: (id) => {
return request({
url: '/promotion/diy-page/get',
method: 'GET',
params: {
id
}
});
},
};
export default DiyPageApi;