[本时生活h5端]

This commit is contained in:
2023-06-21 17:19:58 +08:00
commit ebb9575bd0
284 changed files with 39689 additions and 0 deletions

33
apis/interfaces/oil.js Normal file
View File

@@ -0,0 +1,33 @@
/**
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
import request from '../request'
const index = (data) => {
return request({
url: 'petros'
})
}
// 校园活动确认订单
const buy = (data) => {
return request({
url : "petros/buy",
data: data
})
}
// 校园活动提交订单
const buySubmit = (data) => {
return request({
url : "petros/buy",
method : "POST",
data : data
})
}
export {
index,
buy,
buySubmit
}