| | |
| | | import request from "@/common/untils/request.js" |
| | | import axios from "axios" |
| | | |
| | | // 查询业务类型列表 |
| | | export const getOperationType = async (data) => { |
| | | return await axios.get(`/api-wms/v1/operationType/operationType`, { |
| | | export const getOperationType = (data) => { |
| | | return request({ |
| | | url: "/api-wms/v1/operationType/operationType", |
| | | method: "get", |
| | | params: data |
| | | }) |
| | | } |
| | | // 查询业务类型列表--内部调拨 |
| | | export const getListTransfer = async (data) => { |
| | | return await axios.get(`/api-wms/v1/operationType/listTransfer`, { |
| | | export const getListTransfer = (data) => { |
| | | return request({ |
| | | url: "/api-wms/v1/operationType/listTransfer", |
| | | method: "get", |
| | | params: data |
| | | }) |
| | | } |