[.区块链z证书展示格式等冲突处理]

This commit is contained in:
2021-10-15 15:06:29 +08:00
parent 6155d93548
commit 2855bb58e6
13 changed files with 9218 additions and 6658 deletions

View File

@@ -201,7 +201,15 @@ const randgoodsUrl = (apiUrl, data) => {
data: data
})
}
// 商品确认商品信息页面get 下单页 post
const mallBuyGoods = (data, method) => {
return request({
url: 'mall/buy/goods',
method: method,
data: data
})
}
export {
mall,
list,
@@ -227,5 +235,6 @@ export {
searchUrl,
goodsCategory,
companyCategory,
randgoodsUrl
randgoodsUrl,
mallBuyGoods
}

View File

@@ -24,7 +24,24 @@ const eb = (no) => {
})
}
// 微信支付
const wxPay = (data) => {
return request({
url: 'mall/pay/' + data.order_no + '/wechat',
data: data,
method:'get'
})
}
// EB支付
const ebPay = (data) => {
return request({
url: 'mall/pay/' + data.order_no + '/eb'
})
}
export {
buy,
eb
eb,
wxPay,
ebPay
}