page.js 222 B

123456789101112131415
  1. import request from '@/sheep/request';
  2. const DiyPageApi = {
  3. getDiyPage: (id) => {
  4. return request({
  5. url: '/promotion/diy-page/get',
  6. method: 'GET',
  7. params: {
  8. id
  9. }
  10. });
  11. },
  12. };
  13. export default DiyPageApi;