购物车

This commit is contained in:
summation
2022-01-20 19:22:35 +08:00
parent 2741a41024
commit 4809866df6
12 changed files with 1699 additions and 1781 deletions

View File

@@ -615,3 +615,16 @@ export const getOrderList = (user, status) => {
return fetch('/api/getOrderList', data)
}
//购物车操作
export const memberAddress = (type,data) => {
return fetch('memberAddress?type='+type, data, 'POST' )
}
//支付宝支付二维码
export const generateOrderAlipay = (data) => {
return fetch('generateOrderAlipay', data, 'POST' )
}