WMSInstoreBill.ts 360 B

1234567891011121314151617
  1. import request from '@/benyun/utils/request'
  2. //查询数据
  3. export function query(params:any) {
  4. return request({
  5. url: '/omsOrder/wmsEntryOrder/page',
  6. method: 'get',
  7. params:params
  8. })
  9. }
  10. //查询数据
  11. export function WMSCreateEntryOrder(params:any) {
  12. return request({
  13. url: '/omsOrder/WMSwork/WMSCreateEntryOrder',
  14. method: 'post',
  15. data:params
  16. })
  17. }