other.service.js 483 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. isHost:true
  18. })
  19. }
  20. /**
  21. * 协议
  22. */
  23. QueryClubProtocol (data) {
  24. return this.AjaxService.get({ url:'/club/protocol', data, isLoading: true })
  25. }
  26. }