second-hand-api-map.js 569 Bytes
module.exports = {
  '/api/ufo/secondhand/productDetail': {
    ufo: true,
    auth: false,
    api: 'ufo.product.secondHand.data',
    params: {
      skup: { type: Number } // 商品池id
    },
  },
  '/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
    },
  }
};