mycar.js
583 Bytes
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
import request from '@/utils/request'
/**
* 车主查询自己的车牌信息
*/
export function getPersonCarNumPC() {
return request({
url: '/personCarNumPc/getPersonCarNumPC',
method: 'post'
})
}
/**
* 绑定车牌
* @param params
*/
export function boundCarNum(params) {
return request({
url: '/personCarNumPc/boundCarNum',
method: 'post',
data:params
})
}
/**
* 解绑车牌
* @param params
*/
export function unboundCarNum(params) {
return request({
url: '/personCarNumPc/unboundCarNum',
method: 'post',
data:params
})
}