second-hand-api-map.js 834 Bytes
module.exports = {
  // 二手商品详情
  '/api/ufo/secondhand/productDetail': {
    ufo: true,
    auth: false,
    api: 'ufo.product.secondHand.data',
    params: {
      skup: { type: Number } // 商品池id
    },
  },

  // 相同尺寸二手商品列表
  '/api/ufo/secondhand/list': {
    ufo: true,
    auth: false,
    api: 'ufo.product.secondHand.list',
    params: {
      storage_id: { type: Number }
    },
  },

  // 二手商品 筛选组件数据
  '/api/ufo/secondhand/filter': {
    ufo: true,
    auth: false,
    api: 'ufo.product.secondHand.list.filter',
    params: {
      storage_id: { type: Number }
    },
  },

  '/api/ufo/secondhand/storageCount': {
    ufo: true,
    auth: false,
    api: 'ufo.product.secondHand.list.count',
    params: {
      storage_id: { type: Number } // 库存id
    },
  }
};