营销:接入 APP 装修页面

This commit is contained in:
owen
2024-01-11 11:55:24 +08:00
parent 1694a6f554
commit aa30c2659c
3 changed files with 37 additions and 34 deletions
+15
View File
@@ -0,0 +1,15 @@
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;