mall-uniapp/sheep/api/promotion/diy/page.js

16 lines
230 B
JavaScript

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