拼团列表接口

This commit is contained in:
2022-08-04 13:52:46 +08:00
parent 574994dafd
commit 454ccb91c8
13 changed files with 2007 additions and 835 deletions

22
apis/interfaces/pin.js Normal file
View File

@@ -0,0 +1,22 @@
/**
* Web-zdx
* moduleName: 拼团相关接口
*/
import {
request
} from '../index'
// 拼团列表
const pinList = (data) => {
return request({
url: 'mall/goods/collages',
data:data
})
}
export {
pinList
}