[新增]商城,订单,优惠券,收货地址

This commit is contained in:
张慢慢
2020-12-28 09:16:11 +08:00
parent 17ea653313
commit c56fd8b471
175 changed files with 9259 additions and 96 deletions

View File

@@ -1,9 +1,16 @@
/*
* 订单
/**
* 手太欠
* 5g获客星光网 - 商城首页
*/
import {req} from "../request"
const index = () => req({url: "orders"}) //登录
const cancel = (orderId) => req({url: "orders/cancel/" + orderId}) //取消订单
const orders = (orderId) => req({url: "orders/" + orderId}) //订单-详情
export default({
})
index,
cancel,
orders
})