yangfeng
2023-10-19 e5b0818e29737e7d5466ed87102fc3fbe351b181
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
  })
}