zuozhengqing
2023-10-19 4ad10bb7d7e721f8d46a4615f3c4f0685a56aa77
1
2
3
4
5
6
7
8
9
// import request from "@/common/untils/request.js"
import axios from "axios"
 
// 查询公司列表
export const getCompanyList = async (data) => {
  return await axios.get(`/api-wms/v1/company/company`, {
    params: data
  })
}