123456789101112131415161718 |
- /**
- * 这是与购物有关的业务逻辑的服务
- */
- export default class OrderService {
- constructor(AjaxService) {
- Object.assign(this, { AjaxService })
- this.name = 'OrderService'
- }
- /* 分享订单初始化查询 orderId 订单ID */
- OrderCommodityData (data = {}) {
- return this.AjaxService.get({ url:'/order/commodityData', data, isLoading: true })
- }
- /* 订单支付,效验付款规则 orderId 订单ID */
- OrderPaymentValidation (data = {}) {
- return this.AjaxService.get({ url:'/order/paymentValidation', data, isLoading: false })
- }
- }
|