1234567891011 |
- // 二手商品
- export default class SecondApi {
- constructor(AjaxService) {
- Object.assign(this, { AjaxService })
- this.name = 'SecondApi'
- }
- /*二手商品列表 */
- SeconHandProductList (data = {}) {
- return this.AjaxService.get({ url:'/product/getSecondHandProductList', data, isLoading: true })
- }
- }
|