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

21 lines
387 B
JavaScript
Raw Normal View History

import request from '@/sheep/request';
2023-12-21 09:58:15 +00:00
const DiyTemplateApi = {
getUsedDiyTemplate: () => {
return request({
url: '/app-api/promotion/diy-template/used',
method: 'GET',
});
},
2023-12-21 09:58:15 +00:00
getDiyTemplate: (id) => {
return request({
url: '/app-api/promotion/diy-template/get',
method: 'GET',
params: {
id
}
});
},
};
2023-12-07 13:25:24 +00:00
2023-12-21 09:58:15 +00:00
export default DiyTemplateApi;