second.service.js 308 B

1234567891011
  1. // 二手商品
  2. export default class SecondApi {
  3. constructor(AjaxService) {
  4. Object.assign(this, { AjaxService })
  5. this.name = 'SecondApi'
  6. }
  7. /*二手商品列表 */
  8. SeconHandProductList (data = {}) {
  9. return this.AjaxService.get({ url:'/product/getSecondHandProductList', data, isLoading: true })
  10. }
  11. }