拼团列表接口

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

View File

@@ -47,6 +47,7 @@ const request = (parameter, hideLoding = true) => {
data : parameter.data || {},
method : parameter.method || 'GET',
success : res => {
console.log(res)
if (res.header.Authorization){
updateToken('token', res.header.Authorization)
}

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
}