other.service.js 481 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 条款服务业务逻辑的服务
  3. */
  4. export default class OtherService {
  5. constructor(AjaxService) {
  6. Object.assign(this, { AjaxService })
  7. this.name = 'OtherService'
  8. }
  9. /**
  10. * 售后条款
  11. */
  12. QuerySaveClause (data) {
  13. return this.AjaxService.get({
  14. url:'/order/club/clause',
  15. data,
  16. isLoading: true ,
  17. })
  18. }
  19. /**
  20. * 协议
  21. */
  22. QueryClubProtocol (data) {
  23. return this.AjaxService.get({ url:'/user/center/protocol', data, isLoading: true })
  24. }
  25. }