haoxuan
2023-10-11 4faaa50ff4a44a07949f82271170bec1d9a9e8ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// import request from "@/common/untils/request.js"
import axios from "axios"
//编码规范列表
// 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
  })
}