You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
799 B

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. // ========== 查询相关 ========== - rqrq
  3. // 查询AGV站点列表 - rqrq
  4. export const getAgvStationList = data => createAPI('/wcsSystem/agvStation/list', 'POST', data)
  5. // 获取区域类型下拉选项 - rqrq
  6. export const getAreaOptions = data => createAPI('/wcsSystem/agvStation/getAreaOptions', 'POST', data)
  7. // 获取状态下拉选项 - rqrq
  8. export const getStatusOptions = data => createAPI('/wcsSystem/agvStation/getStatusOptions', 'POST', data)
  9. // ========== 保存相关 ========== - rqrq
  10. // 新增AGV站点 - rqrq
  11. export const addAgvStation = data => createAPI('/wcsSystem/agvStation/add', 'POST', data)
  12. // 修改AGV站点 - rqrq
  13. export const updateAgvStation = data => createAPI('/wcsSystem/agvStation/update', 'POST', data)