张涛
2024-08-30 082b572b91abd0d5ae8e409714553130448aa6d1
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import request from "@/common/untils/request.js"
// 纤度登记列表 
export function getRegisterList(data) {
  return request({
    url: "/api-jl/v1/fineness/register?page="+ data.page+"&pageSize="+data.pageSize+"&keyword="+data.keyword,
    method: "get",
    data
  })
}
 
//保存纤度登记
export function saveRegister(data) {
  return request({
    url: "/api-jl/v1/fineness/register",
    method: "post",
    data
  })
}
// 纤度登记表的详情
export function getRegisterDetails(data) {
  return request({
    url: "/api-jl/v1/fineness/register/"+data.id,
    method: "get",
    data
  })
}
// 删除纤度登记列表
export function getDeleteRegister(data) {
  return request({
    url: "/api-jl/v1/fineness/register/"+data.id,
    method: "delete",
    data
  })
}
// 纤度登记 select数据
export function getDictList(data) {
  return request({
    url: "/api-jl/v1/system/dict?dictType="+data.dictType,
    method: "get",
    data
  })
}
// 纤度登记表 组别的数据
export function getWorkshopManageList(data) {
  return request({
    url: "/api-jl/v1/system/getWorkshopManageList",
    method: "post",
    data
  })
}
// 更新跟进记录
export function getUpdateFollowRecord(data) {
  return request({
    url: "/api/followRecord/update",
    method: "put",
    data
  })
}
 
// 联系方式列表
export function getContactInfoList() {
  return request({
    url: "/api/contactInformation/list",
    method: "get"
  })
}
// 纤度登记表 根据车辆
export function getCarNumber(data) {
  return request({
    url: "/api-jl/v1/system/getCarNumber",
    method: "post",
    data
  })
}
// 自动生成编码
//
export function getAutoCode(params) {
    return request({
        url: "/api-jl/v1/system/getAutoCode",
        method: "get",
       params
    })
}