添加用户协议

This commit is contained in:
zhangmanman
2021-09-28 10:51:58 +08:00
parent cda72679d4
commit d2b2352244
6 changed files with 20 additions and 17 deletions

View File

@@ -39,13 +39,6 @@ const vipCont = (id, data) =>{
})
}
// 会员开通协议
const userAgree = () =>{
return request({
url : 'articles/agreement/openvip'
})
}
// 上传打款凭证
const vipVoucher = (data) =>{
return request({
@@ -55,11 +48,18 @@ const vipVoucher = (data) =>{
})
}
// 用户协议
const userAgree = (apiUrl) => {
return request({
url: apiUrl
})
}
export {
identities,
vipOrder,
vipWechatPay,
vipCont,
userAgree,
vipVoucher
vipVoucher,
userAgree
}