haoxuan
2024-04-11 8003ace3fff94312edeca29c0e1607b903b807e6
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
  })
}