yangfeng
2023-11-30 6050b02cd808a9af2070d61e3b278e3407b845ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import axios from "axios"
import request from "@/common/untils/request.js"
//编码规范列表
// export function getCodeStandardList  (data)  {
//   return request({
//     url: "/api/code/getCodeList",
//     method: "post",
//     data,
//   });
// }
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
  })
}