|
@ -104,7 +104,7 @@ export default { |
|
|
disableStateByCar: function(data) { |
|
|
disableStateByCar: function(data) { |
|
|
return request({ |
|
|
return request({ |
|
|
url: '/as/v1/ascustomervehicle/disableState', |
|
|
url: '/as/v1/ascustomervehicle/disableState', |
|
|
method: 'DELETE', |
|
|
method: 'post', |
|
|
data: data, |
|
|
data: data, |
|
|
headers: { 'Content-Type': 'application/json' } |
|
|
headers: { 'Content-Type': 'application/json' } |
|
|
}) |
|
|
}) |
|
@ -113,7 +113,7 @@ export default { |
|
|
enableByCar: function(data) { |
|
|
enableByCar: function(data) { |
|
|
return request({ |
|
|
return request({ |
|
|
url: '/as/v1/ascustomervehicle/enable', |
|
|
url: '/as/v1/ascustomervehicle/enable', |
|
|
method: 'DELETE', |
|
|
method: 'post', |
|
|
data: data, |
|
|
data: data, |
|
|
headers: { 'Content-Type': 'application/json' } |
|
|
headers: { 'Content-Type': 'application/json' } |
|
|
}) |
|
|
}) |
|
|