haoxuan
2024-03-27 c5e96048fa8d1b40baf1a6a92ed3e8ba17d60761
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/code/getCodeList",
    method: "get",
    params: data
  })
}
// 获取自动编码
export function getAutoCode(data) {
  return request({
    url: "/api/code/getAutoCode",
    method: "post",
    data
  })
}