zuozhengqing
2023-11-17 119efc91fd3374131c31b8c5f8f5f7cb8f6731cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import request from "@/common/untils/request"
export function getCodeStandardList(data) {
  // return  axios.get(`/api/code/getCodeList`, {
  //   params: data
  // })
 
  return request({
    url: "/api-wms/v1/code/getCodeList",
    method: "get",
    params: data
  })
// 获取自动编码
export function getAutoCode(data) {
  return request({
    url: "/api-wms/v1/code/getAutoCode",
    method: "post",
    data
  })
}