search-purchase.js 204 B

12345678
  1. import { useRequest } from '../../../api'
  2. export function ajaxGetSearchPurchaseList(type, data) {
  3. return useRequest({
  4. url: `/jyapi/jybx/buyer/${type}/buyerList`,
  5. method: 'post',
  6. data
  7. })
  8. }