search-supply.js 181 B

12345678
  1. import { useRequest } from '../../../api'
  2. export function ajaxGetSearchSupplyList(data) {
  3. return useRequest({
  4. url: '/jyinfo/supplySearch',
  5. method: 'post',
  6. data
  7. })
  8. }