haoxuan
2024-04-10 74e98e5e0d58bb20cf9c12d58df96e578b9a8c67
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import request from "@/common/untils/request.js"
 
// 创建服务商
export function getRankStandard() {
  return request({
    url: "/api-jl/v1/system/getRankStandard",
    method: "get"
  })
}
// 创建服务商
export function saveRankStandard(data) {
  return request({
    url: "/api-jl/v1/system/saveRankStandard",
    method: "post",
    data
  })
}